From f8c58f363aab2e7a6d4d2cd9edf0373e422b241a Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Fri, 25 Mar 2022 13:32:41 +0100 Subject: [PATCH] Change default MaxPlayers to 8 --- include/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Common.h b/include/Common.h index 4698f6e..88e2732 100644 --- a/include/Common.h +++ b/include/Common.h @@ -44,7 +44,7 @@ public: std::string SSLKeyPath { "./.ssl/HttpServer/key.pem" }; std::string SSLCertPath { "./.ssl/HttpServer/cert.pem" }; bool HTTPServerEnabled { false }; - int MaxPlayers { 10 }; + int MaxPlayers { 8 }; bool Private { true }; int MaxCars { 1 }; bool DebugModeEnabled { false };