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 3bc4e94b..b3c01069 100644 --- a/src/game/g_mover.c +++ b/src/game/g_mover.c @@ -1285,6 +1285,10 @@ Touch_DoorTrigger */ void Touch_DoorTrigger( gentity_t *ent, gentity_t *other, trace_t *trace ) { + //buildables don't trigger movers + if( other->s.eType == ET_BUILDABLE ) + return; + if( other->client && other->client->sess.sessionTeam == TEAM_SPECTATOR ) { // if the door is not open and not opening |