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

@ -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");