diff --git a/user/utility.cpp b/user/utility.cpp index 919bd841..3f3605f3 100644 --- a/user/utility.cpp +++ b/user/utility.cpp @@ -95,9 +95,12 @@ void RoleRates::SubtractRole(RoleTypes__Enum role) { int GetMaxImposterAmount(int playerAmount) { - if(playerAmount >= 9) + GameOptions options; + if (options.GetGameMode() == GameModes__Enum::HideNSeek) + return 1; + if (playerAmount >= 9) return 3; - if(playerAmount >= 7) + if (playerAmount >= 7) return 2; return 1; }