From 31c112157a5c200d86977f99b3cff9d18d932780 Mon Sep 17 00:00:00 2001 From: amouillard Date: Wed, 13 Sep 2023 18:47:24 +0200 Subject: [PATCH] Fix issue #374 --- client/src/map/map.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/map/map.ts b/client/src/map/map.ts index 9ec6c149..93f86408 100644 --- a/client/src/map/map.ts +++ b/client/src/map/map.ts @@ -584,7 +584,7 @@ export class Map extends L.Map { else getInfoPopup().setText(`Selected units can not perform point actions.`); } - else { + else if(selectedUnitTypes.length > 1) { getInfoPopup().setText(`Multiple unit types selected, no common actions available.`); }