]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Spawn the same drop position of vehicles for the turrets
authorLegendaryGuard <rootuser999@gmail.com>
Sat, 2 Jul 2022 01:00:07 +0000 (03:00 +0200)
committerLegendaryGuard <rootuser999@gmail.com>
Sat, 2 Jul 2022 01:00:07 +0000 (03:00 +0200)
qcsrc/common/turrets/sv_turrets.qc

index 2b791bbd9dac067e607d39794bc3e3bc64d3b2be..0d4dd74e4a57cedd687d4a53d3a1de744155c359 100644 (file)
@@ -1478,8 +1478,8 @@ entity spawnturret (entity e, string turret, Turret tur, entity spawnedby, entit
        if(!(e.spawnflags & TSF_SUSPENDED)) { delete(e); return NULL; } // remove even if told not to, as we didn't spawn any kind of turret
 
        // don't spawn suspended in the air, spawn on the ground
-       setorigin(e, e.origin + '0 0 20');
-       tracebox(e.origin + '0 0 64', e.mins, e.maxs, e.origin - '0 0 10000', MOVE_WORLDONLY, e);
+       setorigin(e, e.origin);
+       tracebox(e.origin + '0 0 100', tur.m_mins, tur.m_maxs, e.origin - '0 0 10000', MOVE_WORLDONLY, e);
        setorigin(e, trace_endpos);
 
        // spawn!