diff options
Diffstat (limited to '')
-rw-r--r-- | client/src/editor.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client/src/editor.ts b/client/src/editor.ts index 687f076..77088ce 100644 --- a/client/src/editor.ts +++ b/client/src/editor.ts @@ -1,10 +1,9 @@ import { genMap } from "./map.js" import { startGraphicsUpdater } from "./renderer.js" -import { GameState, Vec2, ATLAS_TILE_WIDTH, Tile } from "./types.js" +import { GameState, Vec2, Tile } from "./types.js" const mapgen = document.getElementById("mapgen") const sidebar = document.getElementById("sidebar") -sidebar.style.display = "none" mapgen.onsubmit = async function(event) { event.preventDefault() |