From 020b0de8750fbea69e9f92c689d12916c6f71182 Mon Sep 17 00:00:00 2001 From: Vivacious Box Date: Thu, 9 Oct 2025 01:40:39 +0200 Subject: [PATCH] Fix forgotten mirv cursor (#2156) ## Description: Forgot to show cross cursor for mirv ## 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: Mr.Box --- src/client/graphics/layers/StructureDrawingUtils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/graphics/layers/StructureDrawingUtils.ts b/src/client/graphics/layers/StructureDrawingUtils.ts index d2c3cbb44..a3693dc74 100644 --- a/src/client/graphics/layers/StructureDrawingUtils.ts +++ b/src/client/graphics/layers/StructureDrawingUtils.ts @@ -18,9 +18,10 @@ export const STRUCTURE_SHAPES: Partial> = { [UnitType.DefensePost]: "octagon", [UnitType.SAMLauncher]: "square", [UnitType.MissileSilo]: "triangle", + [UnitType.Warship]: "cross", [UnitType.AtomBomb]: "cross", [UnitType.HydrogenBomb]: "cross", - [UnitType.Warship]: "cross", + [UnitType.MIRV]: "cross", }; export const LEVEL_SCALE_FACTOR = 3; export const ICON_SCALE_FACTOR_ZOOMED_IN = 3.5;