r4859 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Oct 24 04:03:28 EDT 2008


Author: div0
Date: 2008-10-24 04:03:21 -0400 (Fri, 24 Oct 2008)
New Revision: 4859

Modified:
   trunk/data/qcsrc/server/t_plats.qc
Log:
more door fixes


Modified: trunk/data/qcsrc/server/t_plats.qc
===================================================================
--- trunk/data/qcsrc/server/t_plats.qc	2008-10-24 08:01:55 UTC (rev 4858)
+++ trunk/data/qcsrc/server/t_plats.qc	2008-10-24 08:03:21 UTC (rev 4859)
@@ -770,7 +770,8 @@
 
 void door_trigger_touch()
 {
-	if (other.health < 1 && !other.iscreature)
+	if (other.health < 1)
+	if not(other.iscreature && other.deadflag == DEAD_NO)
 		return;
 
 	if (time < self.attack_finished_single)




More information about the nexuiz-commits mailing list