Skip to content

Commit

Permalink
Fix return scope on CheckForPlayers
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacyway committed May 19, 2024
1 parent 6fdc599 commit 208ee49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fika.Core/Coop/Custom/FikaDynamicAI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ private void CheckForPlayers(CoopBot bot)
if (!bot.gameObject.activeSelf)
{
ActivateBot(bot);
return;
}
return;
}

if (!bot.HealthController.IsAlive)
Expand Down

0 comments on commit 208ee49

Please sign in to comment.