From 37ffd8f7f72d3cb6a0979248118f9c140634eec7 Mon Sep 17 00:00:00 2001 From: Azgaar Date: Sun, 23 Apr 2023 14:39:04 +0400 Subject: [PATCH] fix(#934): description typo --- index.html | 6 +++--- main.js | 4 ++-- modules/dynamic/supporters.js | 3 ++- modules/ui/options.js | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 7ff95229..1ff2c55d 100644 --- a/index.html +++ b/index.html @@ -2057,7 +2057,7 @@ > Military - + @@ -7877,8 +7877,8 @@ - - + + diff --git a/main.js b/main.js index a7756124..6fd3ceef 100644 --- a/main.js +++ b/main.js @@ -909,7 +909,7 @@ function addLakesInDeepDepressions() { TIME && console.timeEnd("addLakesInDeepDepressions"); } -// near sea lakes usually get a lot of water inflow, most of them should brake threshold and flow out to sea (see Ancylus Lake) +// near sea lakes usually get a lot of water inflow, most of them should break threshold and flow out to sea (see Ancylus Lake) function openNearSeaLakes() { if (byId("templateInput").value === "Atoll") return; // no need for Atolls @@ -924,7 +924,7 @@ function openNearSeaLakes() { if (features[lake].type !== "lake") continue; // not a lake cell check_neighbours: for (const c of cells.c[i]) { - if (cells.t[c] !== 1 || cells.h[c] > LIMIT) continue; // water cannot brake this + if (cells.t[c] !== 1 || cells.h[c] > LIMIT) continue; // water cannot break this for (const n of cells.c[c]) { const ocean = cells.f[n]; diff --git a/modules/dynamic/supporters.js b/modules/dynamic/supporters.js index 6f9853f0..c35fce24 100644 --- a/modules/dynamic/supporters.js +++ b/modules/dynamic/supporters.js @@ -483,4 +483,5 @@ L Justin Scheffers Commieboo Garrison Wood -Emsiron`; +Emsiron +Frosty`; diff --git a/modules/ui/options.js b/modules/ui/options.js index ea7f596e..84c726e9 100644 --- a/modules/ui/options.js +++ b/modules/ui/options.js @@ -76,7 +76,7 @@ document // show popup with a list of Patreon supportes (updated manually) async function showSupporters() { - const {supporters} = await import("../dynamic/supporters.js?v=19062022"); + const {supporters} = await import("../dynamic/supporters.js?v=1.89.15"); const list = supporters.split("\n").sort(); const columns = window.innerWidth < 800 ? 2 : 5;