From 5f998043dc510afdaa2cb2aef1a2d25705b99480 Mon Sep 17 00:00:00 2001 From: Azgaar Date: Thu, 7 Aug 2025 01:39:05 +0200 Subject: [PATCH] fix: burg groups - add new icon-anchor symbol on update --- modules/dynamic/auto-update.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/dynamic/auto-update.js b/modules/dynamic/auto-update.js index 0795587e..c45a53e4 100644 --- a/modules/dynamic/auto-update.js +++ b/modules/dynamic/auto-update.js @@ -1015,6 +1015,13 @@ export function resolveVersionConflicts(mapVersion) { }); } + const iconSymbol = byId("icon-anchor"); + if (iconSymbol) { + iconSymbol.outerHTML = /* html */ ` + + `; + } + const validBurgs = pack.burgs.filter(b => b.i && !b.removed); const populations = validBurgs.map(b => b.population).sort((a, b) => a - b); validBurgs.forEach(burg => {