r4312 - trunk/data/qcsrc/server

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


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

Modified:
   trunk/data/qcsrc/server/miscfunctions.qc
Log:
possibly fix start weapons


Modified: trunk/data/qcsrc/server/miscfunctions.qc
===================================================================
--- trunk/data/qcsrc/server/miscfunctions.qc	2008-09-03 14:01:33 UTC (rev 4311)
+++ trunk/data/qcsrc/server/miscfunctions.qc	2008-09-03 14:43:09 UTC (rev 4312)
@@ -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.items & IT_SUPERWEAPON) && (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