Merge pull request #4497 from valentinvanelslande/patch-1
dedicated_room: allow maximum members = 254
This commit is contained in:
commit
65d62b1b87
@ -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 "
|
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";
|
"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 - "
|
std::cout << "max_members needs to be in the range 2 - "
|
||||||
<< Network::MaxConcurrentConnections << "!\n\n";
|
<< Network::MaxConcurrentConnections << "!\n\n";
|
||||||
PrintHelp(argv[0]);
|
PrintHelp(argv[0]);
|
||||||
|
Loading…
Reference in New Issue
Block a user