From 38be51a2d6013af307fc999010c176ecf3950710 Mon Sep 17 00:00:00 2001 From: RickD004 Date: Tue, 31 Mar 2026 19:43:03 -0600 Subject: [PATCH] Make april fool maps have the same name as normal maps (#3555) ## Description: Make the april fool maps have the same name as the normal maps, in order to make the prank better. NOTE: In order for this to work, it re-adds the normal maps into rotation. These normal maps have been given a lower rotation however. In custom matches the maps will appear with the april fools names. This change will be reverted after April Fools. Check this for proof of it working: https://canary.discord.com/channels/1359946986937258015/1450487807242932336/1488682300924231882 ## 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: DISCORD_USERNAME --- src/core/game/Game.ts | 10 +++++----- src/server/MapPlaylist.ts | 4 ++++ 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/core/game/Game.ts b/src/core/game/Game.ts index f1dcea300..9df41d32b 100644 --- a/src/core/game/Game.ts +++ b/src/core/game/Game.ts @@ -144,11 +144,11 @@ export enum GameMapType { SanFrancisco = "San Francisco", Aegean = "Aegean", Dyslexdria = "Dyslexdria", - MilkyWay = "MilkyWay", - AmazonRiverWide = "Amazon River Wide", - ReglaciatedAntarctica = "Reglaciated Antarctica", - TheBoxPlus = "The Box Plus", - WorldRotated = "World Rotated", + MilkyWay = "Milky Way", + AmazonRiverWide = "Amazon River ", + ReglaciatedAntarctica = "Deglaciated Antarctica ", + TheBoxPlus = "The Box ", + WorldRotated = "World ", Mediterranean = "Mediterranean", } diff --git a/src/server/MapPlaylist.ts b/src/server/MapPlaylist.ts index 81738ac72..a57364993 100644 --- a/src/server/MapPlaylist.ts +++ b/src/server/MapPlaylist.ts @@ -38,6 +38,7 @@ const frequency: Partial> = { BlackSea: 6, Britannia: 5, BritanniaClassic: 4, + DeglaciatedAntarctica: 2, Dyslexdria: 12, ReglaciatedAntarctica: 12, EastAsia: 5, @@ -65,6 +66,7 @@ const frequency: Partial> = { StraitOfGibraltar: 5, Svalmel: 8, WorldRotated: 15, + World: 5, Lemnos: 3, Passage: 4, TwoLakes: 6, @@ -72,10 +74,12 @@ const frequency: Partial> = { Surrounded: 4, DidierFrance: 1, Didier: 1, + AmazonRiver: 1, AmazonRiverWide: 12, BosphorusStraits: 3, BeringStrait: 4, Sierpinski: 10, + TheBox: 1, TheBoxPlus: 12, Yenisei: 6, TradersDream: 4,