From d581f14f280cdb985869c5c465d20f4c5dc5d4c8 Mon Sep 17 00:00:00 2001 From: SunnyBoyWTF Date: Thu, 20 Feb 2025 08:47:10 -0500 Subject: [PATCH] Update Maps.ts --- src/client/utilities/Maps.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/client/utilities/Maps.ts b/src/client/utilities/Maps.ts index 28c9e6298..223587941 100644 --- a/src/client/utilities/Maps.ts +++ b/src/client/utilities/Maps.ts @@ -5,6 +5,7 @@ import mena from "../../../resources/maps/Mena.png"; import northAmerica from "../../../resources/maps/NorthAmerica.png"; import blackSea from "../../../resources/maps/BlackSea.png"; import africa from "../../../resources/maps/Africa.png"; +import asia from "../../../resources/maps/Asia.png"; import { GameMapType } from "../../core/game/Game"; @@ -24,6 +25,8 @@ export function getMapsImage(map: GameMapType): string { return blackSea; case GameMapType.Africa: return africa; + case GameMapType.Asia: + return asia; default: return ""; }