From 4dda807b03b5d9ff563ae78cf41773f47a0cc8fa Mon Sep 17 00:00:00 2001 From: FloPinguin <25036848+FloPinguin@users.noreply.github.com> Date: Wed, 1 Apr 2026 02:04:18 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20WorldRotated=20enum=20value=20to=20match?= =?UTF-8?q?=20lang=20key=20=F0=9F=8C=90=20(#3553)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description: Fixes this display bug, says "WORLD ROTATED" now 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 --- resources/lang/en.json | 2 +- src/core/game/Game.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/en.json b/resources/lang/en.json index 2c61a00be..105443b75 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -356,7 +356,7 @@ "amazonriverwide": "Amazon River Wide", "reglaciatedantarctica": "Reglaciated Antarctica", "theboxplus": "The Box PLUS", - "worldrotated": "World for Mobile", + "worldrotated": "World Rotated", "mediterranean": "Mediterranean" }, "map_categories": { diff --git a/src/core/game/Game.ts b/src/core/game/Game.ts index f76355483..e61a3185e 100644 --- a/src/core/game/Game.ts +++ b/src/core/game/Game.ts @@ -147,7 +147,7 @@ export enum GameMapType { AmazonRiverWide = "Amazon River Wide", ReglaciatedAntarctica = "Reglaciated Antarctica", TheBoxPlus = "The Box Plus", - WorldRotated = "World for Mobile", + WorldRotated = "World Rotated", Mediterranean = "Mediterranean", }