Added Mars. Excluded from public lobby playlist. Changed Africa image background to transparent.

This commit is contained in:
NewHappyRabbit
2025-02-20 20:37:36 +02:00
parent aa76c28bb1
commit 1dfc0aef39
11 changed files with 26983 additions and 1 deletions
+4 -1
View File
@@ -83,7 +83,10 @@ export class GameManager {
return this.mapsPlaylist.shift();
}
while (true) {
this.mapsPlaylist = Object.values(GameMapType);
const ignoreMaps = ["Mars"];
this.mapsPlaylist = Object.values(GameMapType).filter(
(map) => !ignoreMaps.includes(map),
);
this.mapsPlaylist.push(GameMapType.World);
this.mapsPlaylist.push(GameMapType.Europe);
this.random.shuffleArray(this.mapsPlaylist);