Merge remote-tracking branch 'origin/master' into gui/lock-everything

# Conflicts:
#	index.html
#	versioning.js
This commit is contained in:
Guillaume St-Pierre 2022-12-10 16:29:58 -05:00
commit ae9ba6c077
9 changed files with 39 additions and 27 deletions

View file

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