From e99e69dfff90f4be74157f219c89a27cd904366d Mon Sep 17 00:00:00 2001 From: neon Date: Thu, 28 Jul 2022 20:54:46 +0100 Subject: [PATCH] night player limit increased from 5 to 8 --- RestartManager/scripting/RestartManager.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RestartManager/scripting/RestartManager.sp b/RestartManager/scripting/RestartManager.sp index 3161bbb8..587ce9ad 100644 --- a/RestartManager/scripting/RestartManager.sp +++ b/RestartManager/scripting/RestartManager.sp @@ -187,7 +187,7 @@ public Action CheckForRestart(Handle timer) iPlayers--; } - if((iPlayers <= 5) && IsItTimeToRestartNight()) + if((iPlayers <= 8) && IsItTimeToRestartNight()) { PrepareRestartNight(); return Plugin_Stop;