From: MirceaKitsune Date: Tue, 19 Jul 2011 13:05:43 +0000 (+0300) Subject: Move vore swallowing to the alt fire button, which will be used for this function... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8c3aab4fce992fd5d098014c0689b4fe4e6eaca4;p=voretournament%2Fvoretournament.git Move vore swallowing to the alt fire button, which will be used for this function from now on --- diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index febc062e..b12564d0 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -60,7 +60,7 @@ float Swallow_condition_check(entity prey) if(swallow_complain != "") { - if(time > self.complain_vore && self.BUTTON_ATCK) + if(time > self.complain_vore && self.BUTTON_ATCK2) { play2(self, "misc/forbidden.wav"); sprint(self, swallow_complain); @@ -782,7 +782,7 @@ void Vore() else self.stat_canswallow = 1; - if(self.BUTTON_ATCK) + if(self.BUTTON_ATCK2) Vore_SwallowStep(prey); } else if(prey != world) @@ -881,7 +881,7 @@ void Vore() Vore_Teamheal(); // execute prey commands - if(self.BUTTON_ATCK) + if(self.BUTTON_ATCK2) { if(cvar("g_vore_kick")) Vore_StomachKick();