From 91cd4214a56c174e28107aa86c372576f316d737 Mon Sep 17 00:00:00 2001 From: FloPinguin <25036848+FloPinguin@users.noreply.github.com> Date: Mon, 22 Jun 2026 21:32:01 +0200 Subject: [PATCH] =?UTF-8?q?Reduce=20compact=20map=20chance=20in=201v1=20fr?= =?UTF-8?q?om=2050%=20to=2020%=20=F0=9F=97=BA=EF=B8=8F=20(#4374)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description: Changes the probability of getting a compact map in 1v1 games from 50% (Math.random() < 0.5) to 20% (Math.random() < 0.2) in `MapPlaylist.ts`. Reasoning is feedback on discord. This suggestion thread: https://discord.com/channels/1284581928254701718/1514204284173025301 And this, for example: image Pro players seemingly want to get rid of compact maps completely, but in the thread you can also see people liking them. So lets do 20% for now? ## 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 ## Please put your Discord username so you can be contacted if a bug or regression is found: FloPinguin --- src/server/MapPlaylist.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/MapPlaylist.ts b/src/server/MapPlaylist.ts index c0d492f6c..9f30e4a16 100644 --- a/src/server/MapPlaylist.ts +++ b/src/server/MapPlaylist.ts @@ -402,7 +402,7 @@ export class MapPlaylist { GameMapType.Asia, // 20% GameMapType.EuropeClassic, // 20% ]; - const isCompact = Math.random() < 0.5; + const isCompact = Math.random() < 0.2; return { donateGold: false, donateTroops: false,