fix multichop

This commit is contained in:
INeedBots 2020-11-25 16:18:37 -06:00
parent b2fc127412
commit a0f25b8b8b
2 changed files with 3 additions and 3 deletions

View File

@ -726,7 +726,7 @@ chopperWatch()
chopper = level.chopper;
if (false && !isEntity(chopper))
if (!isEntity(chopper))
{
chopper = level.chopper["allies"];
if (!isDefined(chopper))

View File

@ -2134,7 +2134,7 @@ bot_killstreak_think()
case "helicopter_mp":
chopper = level.chopper;
if (false && isDefined(chopper) && !isEntity(chopper))
if (isDefined(chopper) && !isEntity(chopper))
chopper = level.chopper[self.team];
if (isDefined(chopper))
@ -2296,7 +2296,7 @@ bot_target_vehicle()
chopper = level.chopper;
if(false && isDefined(chopper) && !isEntity(chopper))
if(isDefined(chopper) && !isEntity(chopper))
{
chopper = level.chopper[ level.otherTeam[self.team] ];
}