mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-17 01:41:22 +01:00
markers - magic portals fix
This commit is contained in:
parent
54428b32f1
commit
f743e649de
1 changed files with 2 additions and 2 deletions
|
|
@ -492,14 +492,14 @@ window.Markers = (function () {
|
||||||
let quantity = rand(5, 15);
|
let quantity = rand(5, 15);
|
||||||
if (burgs.length < quantity + 1) return;
|
if (burgs.length < quantity + 1) return;
|
||||||
let portals = burgs.slice(1, quantity + 1).map(burg => [burg.name, burg.cell]);
|
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) {
|
while (quantity) {
|
||||||
const [portal] = extractAnyElement(portals);
|
const [portal] = extractAnyElement(portals);
|
||||||
const [burgName, cell] = portal;
|
const [burgName, cell] = portal;
|
||||||
const id = appendMarker(cell, "portals");
|
const id = appendMarker(cell, "portals");
|
||||||
const name = `${burgName} Portal`;
|
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});
|
notes.push({id, name, legend});
|
||||||
quantity--;
|
quantity--;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue