From 8ddc93e981f045e6036cd56fe5d6f872cff2b54b Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Tue, 7 Sep 2010 03:53:38 +0300 Subject: [PATCH] It's pointless for bots to randomly release you out, even at lower skills --- data/qcsrc/server/bot/havocbot/vore_ai.qc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/data/qcsrc/server/bot/havocbot/vore_ai.qc b/data/qcsrc/server/bot/havocbot/vore_ai.qc index cdded9fd..a115dd4a 100644 --- a/data/qcsrc/server/bot/havocbot/vore_ai.qc +++ b/data/qcsrc/server/bot/havocbot/vore_ai.qc @@ -79,12 +79,9 @@ void Vore_AI() else if(!self.digesting) { - // the lower the skill, the more bots will tend to regurgitate you - // the higher the skill, the more they will tend to digest you instead + // the higher the skill, the faster bots will start to digest you if(skill >= random_try) self.BUTTON_DIGEST = TRUE; // digest - else - self.BUTTON_REGURGITATE = TRUE; // regurgitate self.decide_delay1 = time + decide_pred; // time before the bot decides what to do with their prey } -- 2.39.2