about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-12-28 17:02:02 -0500
committerelioat <elioat@tilde.institute>2024-12-28 17:02:02 -0500
commit5e712f625536390a28bbf66829bd26f3f84a189c (patch)
tree47b2cec3b0270687b819783bdf38e2f17f189064
parent50874b6fea9b58ea53a16a517471698d4be37ca2 (diff)
downloadtour-5e712f625536390a28bbf66829bd26f3f84a189c.tar.gz
*
-rw-r--r--html/rogue/js/debug.js2
-rw-r--r--html/rogue/js/hex.js1
2 files changed, 1 insertions, 2 deletions
diff --git a/html/rogue/js/debug.js b/html/rogue/js/debug.js
index 6477a83..f2e0b02 100644
--- a/html/rogue/js/debug.js
+++ b/html/rogue/js/debug.js
@@ -33,7 +33,7 @@ const Debug = {
     draw(ctx) {
         if (!this.isEnabled) return;
         
-        const padding = 10;
+        const padding = 30;
         const lineHeight = 20;
         let y = padding;
         
diff --git a/html/rogue/js/hex.js b/html/rogue/js/hex.js
index ab787f6..fa08e3d 100644
--- a/html/rogue/js/hex.js
+++ b/html/rogue/js/hex.js
@@ -6,7 +6,6 @@ const HexGrid = {
     get HEIGHT() { return Config.hex.HEIGHT },
     get GRID_SIZE() { return Config.hex.GRID_SIZE },
     COLOR: Config.colors.GRID,
-    IMPASSABLE_COLOR: "rgba(255, 0, 0, 0.967)",
 
     // hex to pixel
     toPixel(hex) {