diff options
Diffstat (limited to 'src/game/g_mover.c')
-rw-r--r-- | src/game/g_mover.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/g_mover.c b/src/game/g_mover.c index 8f7de418..268a25d7 100644 --- a/src/game/g_mover.c +++ b/src/game/g_mover.c @@ -1756,6 +1756,10 @@ Don't allow decent if a living player is on it */ void Touch_Plat( gentity_t *ent, gentity_t *other, trace_t *trace ) { + // DONT_WAIT + if( ent->spawnflags & 1 ) + return; + if( !other->client || other->client->ps.stats[ STAT_HEALTH ] <= 0 ) return; |