iw5_bot_warfare/raw/scripts/bots_var_fix.gsc
2022-06-19 10:13:17 -06:00

18 lines
352 B
Plaintext

#include common_scripts\utility;
#include maps\mp\_utility;
#include maps\mp\gametypes\_hud_util;
#include maps\mp\bots\_bot_utility;
main()
{
replaceFunc( maps\mp\gametypes\_missions::mayProcessChallenges, ::mayProcessChallenges );
}
mayProcessChallenges()
{
if ( self is_bot() )
return false;
return ( level.rankedMatch );
}