From e4857082a326f4e32d61d8293baac733e4bbfb67 Mon Sep 17 00:00:00 2001 From: Wiwi Kuan Date: Mon, 12 Aug 2024 11:21:56 +0800 Subject: [PATCH] remove debug shortcut --- index.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/index.html b/index.html index 7cce9a3..f476c95 100644 --- a/index.html +++ b/index.html @@ -47,10 +47,6 @@ case 'k': // 標示為地雷 markMine(playerPosition.x, playerPosition.y); break; - case '*': // 啟動調試模式 - debug = !debug; // Toggle the debug state - console.log("Debug mode: " + (debug ? "ON" : "OFF")); - break; } });