r4313 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Wed Sep 3 10:44:10 EDT 2008


Author: div0
Date: 2008-09-03 10:44:10 -0400 (Wed, 03 Sep 2008)
New Revision: 4313

Modified:
   trunk/data/qcsrc/server/miscfunctions.qc
Log:
ACTUALLY fix it


Modified: trunk/data/qcsrc/server/miscfunctions.qc
===================================================================
--- trunk/data/qcsrc/server/miscfunctions.qc	2008-09-03 14:43:09 UTC (rev 4312)
+++ trunk/data/qcsrc/server/miscfunctions.qc	2008-09-03 14:44:10 UTC (rev 4313)
@@ -828,7 +828,7 @@
 			e = get_weaponinfo(i);
 			if(!(e.weapon))
 				continue;
-			if((!(e.items & IT_SUPERWEAPON) && (g_lms || g_tourney)) || cvar(strcat("g_start_weapon_", e.netname)))
+			if(((e.spawnflags & 1) && (g_lms || g_tourney)) || cvar(strcat("g_start_weapon_", e.netname)))
 			{
 				start_weapons |= e.weapons;
 				start_switchweapon = e.weapon;




More information about the nexuiz-commits mailing list