From 89902ccc03b4df69a1e99e6158c5c4c90948f197 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Fri, 3 Feb 2023 18:03:13 -0800 Subject: [PATCH] Tweak the width/height proportion of cells --- assets/scripts/nethack/dungeon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/scripts/nethack/dungeon.js b/assets/scripts/nethack/dungeon.js index c7f071b..4638317 100644 --- a/assets/scripts/nethack/dungeon.js +++ b/assets/scripts/nethack/dungeon.js @@ -389,7 +389,7 @@ let grid; new p5(p => { const CELL_WIDTH = 20; - const CELL_HEIGHT = Math.floor(CELL_WIDTH * 1.333); + const CELL_HEIGHT = Math.floor(CELL_WIDTH * 1.3); p.setup = () => { const container = document.querySelector('#dungeon-background');