From b8e3e929149b95b57b1681d52400bf56dcc6626e Mon Sep 17 00:00:00 2001 From: div0 Date: Thu, 15 Jan 2009 15:35:33 +0000 Subject: [PATCH] fix some silly "self.nextthink = time + cvar("sys_ticrate")" :P git-svn-id: svn://svn.icculus.org/nexuiz/trunk@5553 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- data/qcsrc/server/t_items.qc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/qcsrc/server/t_items.qc b/data/qcsrc/server/t_items.qc index a62fbea59..4cd42c442 100644 --- a/data/qcsrc/server/t_items.qc +++ b/data/qcsrc/server/t_items.qc @@ -746,7 +746,7 @@ void spawnfunc_weapon_nex (void) { 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 @@ void spawnfunc_weapon_minstanex (void) { 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 @@ void spawnfunc_weapon_rocketlauncher (void) { minstagib_items(IT_CELLS); self.think = minst_remove_item; - self.nextthink = time + cvar("sys_ticrate"); + self.nextthink = time; return; } weapon_defaultspawnfunc(WEP_ROCKET_LAUNCHER); -- 2.39.2