Fix and update Pluto map (#1587)

## Description:

I've made a mistake and accidentally uploaded the v23 binary instead of
v24. My apolocheese

I also updated the map based on Duwibi's 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
- [x] I have read and accepted the CLA agreement (only required once).

## Please put your Discord username so you can be contacted if a bug or
regression is found:

aceralex
This commit is contained in:
djmrFunnyMan
2025-07-27 14:25:47 -04:00
committed by GitHub
parent 866ea17bb4
commit 53a8354e32
5 changed files with 39 additions and 222 deletions
+1 -1
View File
@@ -68,8 +68,8 @@ const numPlayersConfig = {
[GameMapType.Halkidiki]: [50, 40, 30],
[GameMapType.StraitOfGibraltar]: [50, 40, 30],
[GameMapType.Italia]: [50, 40, 30],
[GameMapType.Pluto]: [70, 50, 40],
[GameMapType.Yenisei]: [60, 50, 40],
[GameMapType.Pluto]: [120, 80, 50],
} as const satisfies Record<GameMapType, [number, number, number]>;
export abstract class DefaultServerConfig implements ServerConfig {