mirror of
https://github.com/JezuzLizard/Recompilable-gscs-for-BO2-zombies-and-multiplayer.git
synced 2025-07-02 13:37:53 -05:00
replaced several isdefined( condition ) && condition with is_true()
Also added the corresponding include if it was missing.
This commit is contained in:
@ -1120,7 +1120,7 @@ bot_has_radar() //checked changed at own discretion
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
if ( isDefined( self.hasspyplane ) && self.hasspyplane || isDefined( self.hassatellite ) && self.hassatellite)
|
||||
if ( is_true( self.hasspyplane ) || is_true( self.hassatellite ) )
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user