v1.6.19 - spelling fix

This commit is contained in:
Azgaar 2021-03-06 22:59:00 +03:00
parent bd4c5afb74
commit c0f14081a8
2 changed files with 2 additions and 2 deletions

View file

@ -510,7 +510,7 @@ function drawIce() {
if (grid.features[cells.f[i]].type === "lake") continue; // lake: no icebers
let size = (6.5 + t) / 10; // iceberg size: 0 = full size, 1 = zero size
if (cells.t[i] === -1) size *= 1.3; // coasline: smaller icebers
size = Math.min(size * (.4 + rand() * 1.2), .95); // randomize iceberd size
size = Math.min(size * (.4 + rand() * 1.2), .95); // randomize iceberg size
resizePolygon(i, size);
}