]> de.git.xonotic.org Git - voretournament/voretournament.git/commitdiff
It's pointless for bots to randomly release you out, even at lower skills
authorMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Tue, 7 Sep 2010 00:53:38 +0000 (03:53 +0300)
committerMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Tue, 7 Sep 2010 00:53:38 +0000 (03:53 +0300)
data/qcsrc/server/bot/havocbot/vore_ai.qc

index cdded9fdff51a7ca4c6b5c23dd83a3f2ba30fd41..a115dd4a5e759da2c86b578c6423b3d291bfaf40 100644 (file)
@@ -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
                }