From 8c3aab4fce992fd5d098014c0689b4fe4e6eaca4 Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Tue, 19 Jul 2011 16:05:43 +0300 Subject: [PATCH] Move vore swallowing to the alt fire button, which will be used for this function from now on --- data/qcsrc/server/vore.qc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); -- 2.39.2