From f743e649de51650ba2db04b7ca1ee4b68bf552e9 Mon Sep 17 00:00:00 2001 From: Azgaar Date: Sat, 18 Sep 2021 14:15:27 +0300 Subject: [PATCH] markers - magic portals fix --- modules/markers-generator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/markers-generator.js b/modules/markers-generator.js index d6f41f92..4611eb1c 100644 --- a/modules/markers-generator.js +++ b/modules/markers-generator.js @@ -492,14 +492,14 @@ window.Markers = (function () { let quantity = rand(5, 15); if (burgs.length < quantity + 1) return; let portals = burgs.slice(1, quantity + 1).map(burg => [burg.name, burg.cell]); - addMarker("portals", "🌌", 50, 50, 12); + addMarker("portals", "🌀", 50, 50, 14); while (quantity) { const [portal] = extractAnyElement(portals); const [burgName, cell] = portal; const id = appendMarker(cell, "portals"); const name = `${burgName} Portal`; - const legend = `An element of the magic portal system connecting major cities. Portals installed centuries ago, but still works fine`; + const legend = `An element of the magic portal system connecting major cities. Portals installed centuries ago, but still work fine`; notes.push({id, name, legend}); quantity--; }