hotfix: cells were wrongly renamed to gridCells

This commit is contained in:
Azgaar 2022-06-01 22:44:26 +03:00
parent 9498976336
commit 62747e252c
3 changed files with 3 additions and 3 deletions

View file

@ -6121,7 +6121,7 @@
<script src="modules/ui/general.js?v=02062022"></script>
<script src="modules/ui/options.js?v=29052022"></script>
<script src="main.js?v=01062022"></script>
<script src="main.js?v=010620222"></script>
<script defer src="modules/relief-icons.js"></script>
<script defer src="modules/ui/style.js"></script>

View file

@ -45,7 +45,7 @@ let landmass = viewbox.append("g").attr("id", "landmass");
let texture = viewbox.append("g").attr("id", "texture");
let terrs = viewbox.append("g").attr("id", "terrs");
let biomes = viewbox.append("g").attr("id", "biomes");
let gridCells = viewbox.append("g").attr("id", "cells");
let cells = viewbox.append("g").attr("id", "cells");
let gridOverlay = viewbox.append("g").attr("id", "gridOverlay");
let coordinates = viewbox.append("g").attr("id", "coordinates");
let compass = viewbox.append("g").attr("id", "compass");

View file

@ -1,7 +1,7 @@
"use strict";
// version and caching control
const version = "1.84.05"; // generator version, update each time
const version = "1.84.06"; // generator version, update each time
{
document.title += " v" + version;