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;
}
});