From: MirceaKitsune Date: Sat, 16 Jul 2011 01:37:55 +0000 (+0300) Subject: First part of fixing the multiplayer swallowing issue. Will have to release a 0.6... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d567cf82d61f1c854b7824c52c506fba36269411;p=voretournament%2Fvoretournament.git First part of fixing the multiplayer swallowing issue. Will have to release a 0.6.1 due to this... --- diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index d1069129..8dcdb92a 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -1,3 +1,4 @@ +float vore_frametime; .float regurgitate_prepare; .float stomachkick_delay, system_delay, action_delay, digest_button_delay_time, regurgitate_button_delay_time; .float complain_vore; @@ -663,6 +664,10 @@ void Vore() { // main vore code, this is where it all happens + if(vore_frametime > time) //account system frametime + return; + vore_frametime = time + sys_frametime; + Vore_AutoTaunt(); // wash the goo away from players once they leave the stomach