mirror of
https://github.com/ineedbots/iw3_bot_warfare.git
synced 2025-04-20 17:55:42 +00:00
fix multichop
This commit is contained in:
parent
b2fc127412
commit
a0f25b8b8b
@ -726,7 +726,7 @@ chopperWatch()
|
|||||||
|
|
||||||
chopper = level.chopper;
|
chopper = level.chopper;
|
||||||
|
|
||||||
if (false && !isEntity(chopper))
|
if (!isEntity(chopper))
|
||||||
{
|
{
|
||||||
chopper = level.chopper["allies"];
|
chopper = level.chopper["allies"];
|
||||||
if (!isDefined(chopper))
|
if (!isDefined(chopper))
|
||||||
|
@ -2134,7 +2134,7 @@ bot_killstreak_think()
|
|||||||
case "helicopter_mp":
|
case "helicopter_mp":
|
||||||
chopper = level.chopper;
|
chopper = level.chopper;
|
||||||
|
|
||||||
if (false && isDefined(chopper) && !isEntity(chopper))
|
if (isDefined(chopper) && !isEntity(chopper))
|
||||||
chopper = level.chopper[self.team];
|
chopper = level.chopper[self.team];
|
||||||
|
|
||||||
if (isDefined(chopper))
|
if (isDefined(chopper))
|
||||||
@ -2296,7 +2296,7 @@ bot_target_vehicle()
|
|||||||
|
|
||||||
chopper = level.chopper;
|
chopper = level.chopper;
|
||||||
|
|
||||||
if(false && isDefined(chopper) && !isEntity(chopper))
|
if(isDefined(chopper) && !isEntity(chopper))
|
||||||
{
|
{
|
||||||
chopper = level.chopper[ level.otherTeam[self.team] ];
|
chopper = level.chopper[ level.otherTeam[self.team] ];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user