This commit is contained in:
INeedBots 2020-11-12 02:11:03 -06:00
parent 16ae35f892
commit ab98267dfd

View File

@ -687,8 +687,17 @@ chopperWatch()
while(!isDefined(level.chopper)) while(!isDefined(level.chopper))
wait 0.05; wait 0.05;
chopper = level.chopper;
if (!isEntity(chopper))
{
chopper = level.chopper["allies"];
if (!isDefined(chopper)
chopper = level.chopper["axis"];
}
level.bot_chopper = true; level.bot_chopper = true;
level.chopper watchChopper(); chopper watchChopper();
level.bot_chopper = false; level.bot_chopper = false;
while(isDefined(level.chopper)) while(isDefined(level.chopper))