min players by default == 6

This commit is contained in:
GenZmeY 2021-03-02 19:15:55 +03:00
parent d725799518
commit 14d8849ef7

View File

@ -17,7 +17,7 @@ function InitMutator(string Options, out string ErrorMessage)
return;
}
MaxPlayers = Clamp(MyKFGI.GetIntOption(Options, "MaxPlayers", MaxPlayers), 1, 128);
MaxPlayers = Clamp(MyKFGI.GetIntOption(Options, "MaxPlayers", MaxPlayers), 6, 128);
MaxPlayersAllowed = MaxPlayers;
MyKFGI.MaxPlayers = MaxPlayers;
MyKFGI.MaxPlayersAllowed = MaxPlayersAllowed;