[nexuiz-commits] r6883 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Jun 6 08:37:52 EDT 2009


Author: div0
Date: 2009-06-06 08:37:52 -0400 (Sat, 06 Jun 2009)
New Revision: 6883

Modified:
   trunk/data/qcsrc/server/w_minstanex.qc
Log:
fix minstanex checkammo (secondary fire needs no ammo)


Modified: trunk/data/qcsrc/server/w_minstanex.qc
===================================================================
--- trunk/data/qcsrc/server/w_minstanex.qc	2009-06-06 12:19:47 UTC (rev 6882)
+++ trunk/data/qcsrc/server/w_minstanex.qc	2009-06-06 12:37:52 UTC (rev 6883)
@@ -178,7 +178,7 @@
 			return self.ammo_cells >= cvar("g_balance_minstanex_ammo");
 	}
 	else if (req == WR_CHECKAMMO2)
-		return FALSE;
+		return TRUE;
 	else if (req == WR_SUICIDEMESSAGE)
 		w_deathtypestring = "did the impossible";
 	else if (req == WR_KILLMESSAGE)



More information about the nexuiz-commits mailing list