mirror of
https://github.com/ENSL/NS.git
synced 2025-04-20 16:30:56 +00:00
Added bot disabled guard to round start
This commit is contained in:
parent
25c148da9c
commit
3217a5226e
1 changed files with 2 additions and 0 deletions
|
@ -951,6 +951,8 @@ void AIMGR_ReloadNavigationData()
|
|||
|
||||
void AIMGR_RoundStarted()
|
||||
{
|
||||
if (avh_botsenabled.value == 0 || !NavmeshLoaded()) { return; } // Do nothing if we're not using bots
|
||||
|
||||
bHasRoundStarted = true;
|
||||
|
||||
AvHTeamNumber TeamANumber = GetGameRules()->GetTeamANumber();
|
||||
|
|
Loading…
Reference in a new issue