[nexuiz-commits] r8106 - in branches/nexuiz-2.0: . data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Oct 11 13:01:36 EDT 2009


Author: div0
Date: 2009-10-11 13:01:35 -0400 (Sun, 11 Oct 2009)
New Revision: 8106

Modified:
   branches/nexuiz-2.0/.patchsets
   branches/nexuiz-2.0/data/qcsrc/server/race.qc
Log:
r8105 | div0 | 2009-10-11 12:06:44 -0400 (Sun, 11 Oct 2009) | 2 lines
race: STRICTTRIGGER spawnflag: still forward trigger events from anything but players unconditionally (so dropped weapons can be killed)


Modified: branches/nexuiz-2.0/.patchsets
===================================================================
--- branches/nexuiz-2.0/.patchsets	2009-10-11 16:06:44 UTC (rev 8105)
+++ branches/nexuiz-2.0/.patchsets	2009-10-11 17:01:35 UTC (rev 8106)
@@ -1,2 +1,2 @@
 master = svn://svn.icculus.org/nexuiz/trunk
-revisions_applied = 1-7945,7948-7948,7951-7990,7993-8086,8089-8089,8093-8096,8099-8102
+revisions_applied = 1-7945,7948-7948,7951-7990,7993-8086,8089-8089,8093-8102,8105-8105

Modified: branches/nexuiz-2.0/data/qcsrc/server/race.qc
===================================================================
--- branches/nexuiz-2.0/data/qcsrc/server/race.qc	2009-10-11 16:06:44 UTC (rev 8105)
+++ branches/nexuiz-2.0/data/qcsrc/server/race.qc	2009-10-11 17:01:35 UTC (rev 8106)
@@ -340,7 +340,7 @@
 	/*
 	 * Trigger targets
 	 */
-	if not(self.spawnflags & 2)
+	if not((self.spawnflags & 2) && (other.classname == "player"))
 	{
 		activator = other;
 		oldmsg = self.message;



More information about the nexuiz-commits mailing list