r1919 - trunk/data/qcsrc/server

savagex at icculus.org savagex at icculus.org
Thu Nov 9 15:20:46 EST 2006


Author: savagex
Date: 2006-11-09 15:20:46 -0500 (Thu, 09 Nov 2006)
New Revision: 1919

Modified:
   trunk/data/qcsrc/server/t_plats.qc
Log:
replace a spawnflags == 4 with a | 4


Modified: trunk/data/qcsrc/server/t_plats.qc
===================================================================
--- trunk/data/qcsrc/server/t_plats.qc	2006-11-09 20:17:52 UTC (rev 1918)
+++ trunk/data/qcsrc/server/t_plats.qc	2006-11-09 20:20:46 UTC (rev 1919)
@@ -689,7 +689,7 @@
 void() door_blocked =
 {
 
-    if((self.spawnflags == 4) && (other.takedamage != DAMAGE_NO)) { // KIll Kill Kill!!
+    if((self.spawnflags | 4) && (other.takedamage != DAMAGE_NO)) { // KIll Kill Kill!!
         Damage (other, self, self, 10000, DEATH_HURTTRIGGER, other.origin, '0 0 0');
     } else {
 




More information about the nexuiz-commits mailing list