From e0d4177ffb063836ab9903447c781d5a806d4d24 Mon Sep 17 00:00:00 2001 From: jimmyGALLAND Date: Mon, 27 Oct 2025 00:27:51 +0100 Subject: [PATCH] disable debug mode, remove custom key bindings --- lodeRunner.key.js | 3 --- lodeRunner.misc.js | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/lodeRunner.key.js b/lodeRunner.key.js index fafc09e..d35c015 100644 --- a/lodeRunner.key.js +++ b/lodeRunner.key.js @@ -237,15 +237,12 @@ function pressKey(code) case "KeyU": case "KeyY": //Y key to dig left, for German keyboards case "Comma": - case "ControlRight": keyAction = ACT_DIG_LEFT; break; case "KeyX": case "KeyO": case "KeyE": case "Period": - case "Numpad0": - case "End": keyAction = ACT_DIG_RIGHT; break; case "Escape": //help & pause diff --git a/lodeRunner.misc.js b/lodeRunner.misc.js index 358c7a3..680b4d1 100644 --- a/lodeRunner.misc.js +++ b/lodeRunner.misc.js @@ -1,7 +1,7 @@ //============ // MISC //============ -var DEBUG = 1; +var DEBUG = 0; var demoSoundOff = 1; function debug(string)