update height model and scale parameters

This commit is contained in:
Mészáros Gergely 2021-09-05 14:57:10 +02:00
parent d6d292f5bd
commit 5084e831f9
3 changed files with 4 additions and 3 deletions

View file

@ -74,7 +74,7 @@ window.Submap = (function () {
// raise every land cell a bit except riverbeds
grid.cells.h.forEach((h, i) => {
if (!rbeds[i] || grid.cells.t[i]<1) return;
grid.cells.h[i] = Math.min(grid.cells.h[i] * 1.1, 255);
grid.cells.h[i] = Math.min(grid.cells.h[i]+2, 100);
});
}