From 87f590c39270368ac1e3bae00b24ce97c178bda8 Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Mon, 18 Apr 2011 19:21:27 +0300 Subject: [PATCH] Allow bots to swallow you even when gentle vore mutator is enabled --- data/qcsrc/server/bot/havocbot/vore_ai.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/qcsrc/server/bot/havocbot/vore_ai.qc b/data/qcsrc/server/bot/havocbot/vore_ai.qc index f07ed3d0..4bbd4211 100644 --- a/data/qcsrc/server/bot/havocbot/vore_ai.qc +++ b/data/qcsrc/server/bot/havocbot/vore_ai.qc @@ -131,7 +131,7 @@ void Vore_AI() fear += self.stomach_load; // the bigger our stomach, the less we want to put someone else in there decide_pred_time = cvar("bot_ai_vore_decide_pred") / skill / self.bot_vorethinkpred; - if(time > self.decide_swallow && cvar("g_vore_digestion")) + if(time > self.decide_swallow) if(Swallow_condition_check_bot(prey)) { // the greater the skill, the higher the chance bots will swallow someone each attempt -- 2.39.2