From 4fef27d014907c8233e6500d543fa46419f2b741 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 Fixes this display bug, says "WORLD ROTATED" now image - [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 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 f8bbbc1fc..7da16805e 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -350,7 +350,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 f6c80caeb..7e9358405 100644 --- a/src/core/game/Game.ts +++ b/src/core/game/Game.ts @@ -143,7 +143,7 @@ export enum GameMapType { AmazonRiverWide = "Amazon River Wide", ReglaciatedAntarctica = "Reglaciated Antarctica", TheBoxPlus = "The Box Plus", - WorldRotated = "World for Mobile", + WorldRotated = "World Rotated", } export type GameMapName = keyof typeof GameMapType;