From d567cf82d61f1c854b7824c52c506fba36269411 Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Sat, 16 Jul 2011 04:37:55 +0300 Subject: [PATCH 1/1] First part of fixing the multiplayer swallowing issue. Will have to release a 0.6.1 due to this... --- data/qcsrc/server/vore.qc | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.39.2