From e130574c5cd47d4554f11c19ad3dbec7e689fa7e Mon Sep 17 00:00:00 2001 From: FloPinguin <25036848+FloPinguin@users.noreply.github.com> Date: Sun, 11 Jan 2026 04:21:17 +0100 Subject: [PATCH] =?UTF-8?q?Very=20small=20UI=20fix=20=F0=9F=94=A7=20(#2862?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description: Didier map name had a little UI problem. And unrelated change: Because Lewis today said "it should be super low" I turned down the frequency of this map from 2 to 1. Previous: image2 Fixed: image ## 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/game/Game.ts | 2 +- src/server/MapPlaylist.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/game/Game.ts b/src/core/game/Game.ts index 3cb288559..8d732c271 100644 --- a/src/core/game/Game.ts +++ b/src/core/game/Game.ts @@ -114,7 +114,7 @@ export enum GameMapType { StraitOfHormuz = "Strait of Hormuz", Surrounded = "Surrounded", Didier = "Didier", - DidierFrance = "Didier (France)", + DidierFrance = "Didier France", AmazonRiver = "Amazon River", } diff --git a/src/server/MapPlaylist.ts b/src/server/MapPlaylist.ts index 39bebe93b..35a218a47 100644 --- a/src/server/MapPlaylist.ts +++ b/src/server/MapPlaylist.ts @@ -61,7 +61,7 @@ const frequency: Partial> = { TwoLakes: 6, StraitOfHormuz: 4, Surrounded: 4, - DidierFrance: 2, + DidierFrance: 1, AmazonRiver: 3, };