r3493 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Mar 9 12:45:32 EDT 2008


Author: lordhavoc
Date: 2008-03-09 12:45:31 -0400 (Sun, 09 Mar 2008)
New Revision: 3493

Modified:
   trunk/data/qcsrc/server/t_quake.qc
Log:
slightly clarify item_health handling (use item_health_mega and
item_health_medium calls instead of 100 and 25)


Modified: trunk/data/qcsrc/server/t_quake.qc
===================================================================
--- trunk/data/qcsrc/server/t_quake.qc	2008-03-09 16:44:41 UTC (rev 3492)
+++ trunk/data/qcsrc/server/t_quake.qc	2008-03-09 16:45:31 UTC (rev 3493)
@@ -8,7 +8,7 @@
 void item_spikes (void) {item_bullets();}
 void item_armor2 (void) {item_armor25();}
 void item_armorInv (void) {item_armor25();}
-void item_health (void) {if (self.spawnflags & 2) item_health100();else item_health25();}
+void item_health (void) {if (self.spawnflags & 2) item_health_mega();else item_health_medium();}
 
 //item_spikes
 //item_health




More information about the nexuiz-commits mailing list