From 3eb788b3f6eafdd9bddb36ee5a08a15944efb6a3 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 22 Dec 2011 11:19:24 +0900 Subject: [PATCH] Make qw's SV_Push remove ONGROUND for non-players. This seems to have been an optimization for QW since standard qw removed monsters. However, since there are QW mods that brought back monsters, this should be an improvement. --- qw/source/sv_phys.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qw/source/sv_phys.c b/qw/source/sv_phys.c index 9cc29801f..734c5695a 100644 --- a/qw/source/sv_phys.c +++ b/qw/source/sv_phys.c @@ -483,6 +483,9 @@ SV_Push (edict_t *pusher, const vec3_t tmove, const vec3_t amove) continue; // The pusher and entity collide, so push the entity. } + // remove the onground flag for non-players + if (c_movetype != MOVETYPE_WALK) + SVfloat (check, flags) = c_flags & ~FL_ONGROUND; c_origin = SVvector (check, origin); VectorCopy (c_origin, moved_from[num_moved]);