]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Hardcode some more references to the player hitbox
authorMario <zacjardine@y7mail.com>
Tue, 21 Apr 2015 06:17:25 +0000 (16:17 +1000)
committerMario <zacjardine@y7mail.com>
Tue, 21 Apr 2015 06:17:25 +0000 (16:17 +1000)
qcsrc/client/main.qc
qcsrc/server/spawnpoints.qc

index 535724b91c126e22d7282b9521de0e08ec2ad40c..fd4427050722fc7e2da3174fda70606501acb153 100644 (file)
@@ -850,7 +850,7 @@ void Ent_ReadSpawnPoint(float is_new) // entity for spawnpoint
        if(is_new)
        {
                self.origin = spn_origin;
-               setsize(self, PL_MIN, PL_MAX);
+               setsize(self, '-16 -16 -24', '16 16 45');
                droptofloor();
 
                /*if(autocvar_cl_spawn_point_model) // needs a model first
index bf9a532eb594eae8877ff6b2121ec18d0de5ad0f..fce8c37e3326ea8f22e46e354a44e2a65cc9b490 100644 (file)
@@ -68,13 +68,13 @@ void relocate_spawnpoint()
     // nudge off the floor
     setorigin(self, self.origin + '0 0 1');
 
-    tracebox(self.origin, PL_MIN, PL_MAX, self.origin, true, self);
+    tracebox(self.origin, '-16 -16 -24', '16 16 45', self.origin, true, self);
     if (trace_startsolid)
     {
         vector o;
         o = self.origin;
-        self.mins = PL_MIN;
-        self.maxs = PL_MAX;
+        self.mins = '-16 -16 -24';
+        self.maxs = '16 16 45';
         if (!move_out_of_solid(self))
             objerror("could not get out of solid at all!");
         print("^1NOTE: this map needs FIXING. Spawnpoint at ", vtos(o - '0 0 1'));