From 6d1e2f59ded4ed1fa2fd163f44784998cd394d0a Mon Sep 17 00:00:00 2001 From: FloPinguin <25036848+FloPinguin@users.noreply.github.com> Date: Sun, 4 Jan 2026 05:07:30 +0100 Subject: [PATCH] =?UTF-8?q?Optimize=20player=20count=20configuration=20for?= =?UTF-8?q?=20Surrounded=20map=20=F0=9F=8F=9D=EF=B8=8F=20(#2780)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description: Based on Nikola map lead feedback ## Please complete the following: - [X] I have added screenshots for all UI updates - [X] I process any text displayed to the user through translateText() and I've added it to the en.json file - [X] I have added relevant tests to the test directory - [X] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: FloPinguin --- src/core/configuration/DefaultConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 64621e0a9..4cd25161b 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -87,7 +87,7 @@ const numPlayersConfig = { [GameMapType.Lemnos]: [20, 15, 10], [GameMapType.TwoLakes]: [60, 50, 40], [GameMapType.StraitOfHormuz]: [40, 36, 30], - [GameMapType.Surrounded]: [56, 28, 14], // 4, 2, 1 players per island + [GameMapType.Surrounded]: [42, 28, 14], // 3, 2, 1 player(s) per island } as const satisfies Record; export abstract class DefaultServerConfig implements ServerConfig {