r5553 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Thu Jan 15 10:35:34 EST 2009


Author: div0
Date: 2009-01-15 10:35:33 -0500 (Thu, 15 Jan 2009)
New Revision: 5553

Modified:
   trunk/data/qcsrc/server/t_items.qc
Log:
fix some silly "self.nextthink = time + cvar("sys_ticrate")" :P


Modified: trunk/data/qcsrc/server/t_items.qc
===================================================================
--- trunk/data/qcsrc/server/t_items.qc	2009-01-15 15:24:49 UTC (rev 5552)
+++ trunk/data/qcsrc/server/t_items.qc	2009-01-15 15:35:33 UTC (rev 5553)
@@ -746,7 +746,7 @@
 	{
 		minstagib_items(IT_CELLS);
 		self.think = minst_remove_item;
-		self.nextthink = time + cvar("sys_ticrate");
+		self.nextthink = time;
 		return;
 	}
 	weapon_defaultspawnfunc(WEP_NEX);
@@ -758,7 +758,7 @@
 	{
 		minstagib_items(IT_CELLS);
 		self.think = minst_remove_item;
-		self.nextthink = time + cvar("sys_ticrate");
+		self.nextthink = time;
 		return;
 	}
 	weapon_defaultspawnfunc(WEP_MINSTANEX);
@@ -770,7 +770,7 @@
 	{
 		minstagib_items(IT_CELLS);
 		self.think = minst_remove_item;
-		self.nextthink = time + cvar("sys_ticrate");
+		self.nextthink = time;
 		return;
 	}
 	weapon_defaultspawnfunc(WEP_ROCKET_LAUNCHER);




More information about the nexuiz-commits mailing list