Skip to content

Commit 6d1e2f5

Browse files
authored
Optimize player count configuration for Surrounded map 🏝️ (openfrontio#2780)
## 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
1 parent 70767d2 commit 6d1e2f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core/configuration/DefaultConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const numPlayersConfig = {
8787
[GameMapType.Lemnos]: [20, 15, 10],
8888
[GameMapType.TwoLakes]: [60, 50, 40],
8989
[GameMapType.StraitOfHormuz]: [40, 36, 30],
90-
[GameMapType.Surrounded]: [56, 28, 14], // 4, 2, 1 players per island
90+
[GameMapType.Surrounded]: [42, 28, 14], // 3, 2, 1 player(s) per island
9191
} as const satisfies Record<GameMapType, [number, number, number]>;
9292

9393
export abstract class DefaultServerConfig implements ServerConfig {

0 commit comments

Comments
 (0)