fix(#934): description typo

This commit is contained in:
Azgaar 2023-04-23 14:39:04 +04:00
parent eb81f0d708
commit 37ffd8f7f7
4 changed files with 8 additions and 7 deletions

View file

@ -2057,7 +2057,7 @@
>
Military
</button>
<button id="regenerateIce" data-tip="Click to icebergs and glaciers">Ice</button>
<button id="regenerateIce" data-tip="Click to regenerate icebergs and glaciers">Ice</button>
<button id="regenerateMarkers" data-tip="Click to regenerate unlocked markers">
Markers <i id="configRegenerateMarkers" class="icon-cog" data-tip="Click to set number multiplier"></i>
</button>
@ -7877,8 +7877,8 @@
<script src="modules/ui/stylePresets.js?v=1.89.11"></script>
<script src="modules/ui/general.js?v=1.87.03"></script>
<script src="modules/ui/options.js?v=1.88.14"></script>
<script src="main.js?v=1.89.12"></script>
<script src="modules/ui/options.js?v=1.89.15"></script>
<script src="main.js?v=1.89.15"></script>
<script defer src="modules/relief-icons.js"></script>
<script defer src="modules/ui/style.js"></script>

View file

@ -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];

View file

@ -483,4 +483,5 @@ L
Justin Scheffers
Commieboo
Garrison Wood
Emsiron`;
Emsiron
Frosty`;

View file

@ -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;