From 8d0b1688cc84d602999f2de345939742ef066404 Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Tue, 19 Jul 2011 16:10:02 +0300 Subject: [PATCH] Ah... keep primary fire for stomach kicks though --- data/qcsrc/server/bot/havocbot/vore_ai.qc | 2 +- data/qcsrc/server/vore.qc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/qcsrc/server/bot/havocbot/vore_ai.qc b/data/qcsrc/server/bot/havocbot/vore_ai.qc index 9d293878..52be2a41 100644 --- a/data/qcsrc/server/bot/havocbot/vore_ai.qc +++ b/data/qcsrc/server/bot/havocbot/vore_ai.qc @@ -245,7 +245,7 @@ void Vore_AI() // the higher the skill, the more the bot will kick in your stomack if(skill >= randomtry) if not(teams_matter && self.team == self.predator.team) // if someone from the same team is in the belly, don't kick the predator - self.BUTTON_ATCK2 = TRUE; // kick + self.BUTTON_ATCK = TRUE; // kick } // if a bot can willingly leave the predator, do so unless there's a reason not to diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index b12564d0..855b402e 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -881,7 +881,7 @@ void Vore() Vore_Teamheal(); // execute prey commands - if(self.BUTTON_ATCK2) + if(self.BUTTON_ATCK) { if(cvar("g_vore_kick")) Vore_StomachKick(); -- 2.39.2