From: MirceaKitsune Date: Mon, 4 Oct 2010 10:45:01 +0000 (+0300) Subject: A comment too X-Git-Url: http://git.xonotic.org/?p=voretournament%2Fvoretournament.git;a=commitdiff_plain;h=d7d37dc7a494185cb0261fd1854a40af40a7d0e2 A comment too --- diff --git a/data/qcsrc/server/bot/havocbot/vore_ai.qc b/data/qcsrc/server/bot/havocbot/vore_ai.qc index 8a18c2e7..51a3ed39 100644 --- a/data/qcsrc/server/bot/havocbot/vore_ai.qc +++ b/data/qcsrc/server/bot/havocbot/vore_ai.qc @@ -5,7 +5,7 @@ float Swallow_condition_check_bot(entity prey) // checks the necessary conditions for a bot to swallow a player if(Swallow_condition_check(prey)) // check the normal conditions of the vore system - if(time >= prey.spawnshieldtime) + if(time >= prey.spawnshieldtime) // spawn shield means you are invincible if not(prey.BUTTON_CHAT) // don't eat players who are chatting if(self.health > cvar("g_balance_vore_kick_damage_max")) // explained below return TRUE;