Merge branch 'master' into relief-webgl-renderer

This commit is contained in:
Azgaar 2026-03-11 01:03:23 +01:00 committed by GitHub
commit 3c7b6fffef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 170 additions and 643 deletions

View file

@ -260,7 +260,7 @@ function getName(id) {
}
function getGraph(currentGraph) {
const newGraph = shouldRegenerateGrid(currentGraph, seed) ? generateGrid() : deepCopy(currentGraph);
const newGraph = shouldRegenerateGrid(currentGraph, seed) ? generateGrid() : structuredClone(currentGraph);
delete newGraph.cells.h;
return newGraph;
}