summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/game/g_mover.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game/g_mover.c b/src/game/g_mover.c
index fa1d784d..ea6d6b54 100644
--- a/src/game/g_mover.c
+++ b/src/game/g_mover.c
@@ -946,9 +946,10 @@ void Think_SpawnNewDoorTrigger( gentity_t *ent )
vec3_t mins, maxs;
int i, best;
+ //TA: disable shootable doors
// set all of the slaves as shootable
- for( other = ent; other; other = other->teamchain )
- other->takedamage = qtrue;
+ //for( other = ent; other; other = other->teamchain )
+ // other->takedamage = qtrue;
// find the bounds of everything on the team
VectorCopy( ent->r.absmin, mins );