From: MirceaKitsune Date: Tue, 7 Sep 2010 00:53:38 +0000 (+0300) Subject: It's pointless for bots to randomly release you out, even at lower skills X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8ddc93e981f045e6036cd56fe5d6f872cff2b54b;p=voretournament%2Fvoretournament.git It's pointless for bots to randomly release you out, even at lower skills --- 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 }