From 2f5be21fe236bb7692ab8fc849583922b1833591 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 20 Feb 2018 16:47:25 +1000 Subject: [PATCH] Allow undefined maximum players --- qcsrc/server/g_world.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/g_world.qc b/qcsrc/server/g_world.qc index 16303bd39..8dffcaf09 100644 --- a/qcsrc/server/g_world.qc +++ b/qcsrc/server/g_world.qc @@ -1020,7 +1020,7 @@ float MapHasRightSize(string map) LOG_TRACE("not enough"); return false; } - if(player_count > mapmax) + if(mapmax && player_count > mapmax) { LOG_TRACE("too many"); return false; -- 2.39.2