]> de.git.xonotic.org Git - voretournament/voretournament.git/blobdiff - data/qcsrc/server/bot/havocbot/vore_ai.qc
Comments and stuff
[voretournament/voretournament.git] / data / qcsrc / server / bot / havocbot / vore_ai.qc
index 7f6794eb6e23b233ed9ccf8228f3eb81e96d75ac..0b46daebc898d7b7d9e38cb4dd7c18642da9f563 100644 (file)
@@ -2,9 +2,9 @@
 
 float Swallow_condition_check_bot(entity prey)
 {
-       // checks the necessary conditions for a bot to swallow another player
+       // checks the necessary conditions for a bot to swallow a player
 
-       if(Swallow_condition_check(prey)) // check the normal conditions imposed by the vore system
+       if(Swallow_condition_check(prey)) // check the normal conditions of the vore system
        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;
@@ -14,7 +14,7 @@ float Swallow_condition_check_bot(entity prey)
 void Vore_AI_Teamheal(entity prey)
 {
        // allows bots to use the teamheal feature and heal damaged team mates
-       // the prey entity is only used when it's available (a player is detected in-range)
+       // the prey entity is only used when it's available (a player is detected in range)
 
        entity head;