From ab3653e49a5462502f56c96bb0ec7607a914975b Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Mon, 28 Feb 2011 03:40:45 +0200 Subject: [PATCH] Fix the timer --- data/qcsrc/server/vore.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index 0300168c..c806b2fd 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -422,7 +422,7 @@ void Vore_AutoTaunt() if(!self.taunt_soundtime) { taunt_time = random() * (cvar("sv_vore_autotaunt_repeat_max") - cvar("sv_vore_autotaunt_repeat_min")) + cvar("sv_vore_autotaunt_repeat_min"); - SetAutoTaunt(self, taunt_time, TAUNTTYPE_VOREPRED); + SetAutoTaunt(self, time + taunt_time, TAUNTTYPE_VOREPRED); } } else if(self.taunt_soundtype == TAUNTTYPE_VOREPRED) @@ -437,7 +437,7 @@ void Vore_AutoTaunt() if(!self.taunt_soundtime) { taunt_time = random() * (cvar("sv_vore_autotaunt_repeat_max") - cvar("sv_vore_autotaunt_repeat_min")) + cvar("sv_vore_autotaunt_repeat_min"); - SetAutoTaunt(self, taunt_time, TAUNTTYPE_VOREPREY); + SetAutoTaunt(self, time + taunt_time, TAUNTTYPE_VOREPREY); } } else if(self.taunt_soundtype == TAUNTTYPE_VOREPREY) -- 2.39.2