dedicated_room: allow maximum members = 254

Without this change, it will not accept 254 but it will say that the maximum is 254.
This commit is contained in:
Valentin Vanelslande 2018-12-10 14:21:32 -05:00 committed by GitHub
parent 80f1076a07
commit 1ec7c951a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ int main(int argc, char** argv) {
std::cout << "preferred-game-id not set!\nThis should get set to allow users to find your "
"room.\nSet with --preferred-game-id id\n\n";
}
if (max_members >= Network::MaxConcurrentConnections || max_members < 2) {
if (max_members > Network::MaxConcurrentConnections || max_members < 2) {
std::cout << "max_members needs to be in the range 2 - "
<< Network::MaxConcurrentConnections << "!\n\n";
PrintHelp(argv[0]);