Skip to content

Commit 38be51a

Browse files
authored
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
1 parent 1ebcd8d commit 38be51a

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

src/core/game/Game.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,11 @@ export enum GameMapType {
144144
SanFrancisco = "San Francisco",
145145
Aegean = "Aegean",
146146
Dyslexdria = "Dyslexdria",
147-
MilkyWay = "MilkyWay",
148-
AmazonRiverWide = "Amazon River Wide",
149-
ReglaciatedAntarctica = "Reglaciated Antarctica",
150-
TheBoxPlus = "The Box Plus",
151-
WorldRotated = "World Rotated",
147+
MilkyWay = "Milky Way",
148+
AmazonRiverWide = "Amazon River ",
149+
ReglaciatedAntarctica = "Deglaciated Antarctica ",
150+
TheBoxPlus = "The Box ",
151+
WorldRotated = "World ",
152152
Mediterranean = "Mediterranean",
153153
}
154154

src/server/MapPlaylist.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ const frequency: Partial<Record<GameMapName, number>> = {
3838
BlackSea: 6,
3939
Britannia: 5,
4040
BritanniaClassic: 4,
41+
DeglaciatedAntarctica: 2,
4142
Dyslexdria: 12,
4243
ReglaciatedAntarctica: 12,
4344
EastAsia: 5,
@@ -65,17 +66,20 @@ const frequency: Partial<Record<GameMapName, number>> = {
6566
StraitOfGibraltar: 5,
6667
Svalmel: 8,
6768
WorldRotated: 15,
69+
World: 5,
6870
Lemnos: 3,
6971
Passage: 4,
7072
TwoLakes: 6,
7173
StraitOfHormuz: 4,
7274
Surrounded: 4,
7375
DidierFrance: 1,
7476
Didier: 1,
77+
AmazonRiver: 1,
7578
AmazonRiverWide: 12,
7679
BosphorusStraits: 3,
7780
BeringStrait: 4,
7881
Sierpinski: 10,
82+
TheBox: 1,
7983
TheBoxPlus: 12,
8084
Yenisei: 6,
8185
TradersDream: 4,

0 commit comments

Comments
 (0)