remove debug shortcut

This commit is contained in:
Wiwi Kuan
2024-08-12 11:21:56 +08:00
committed by GitHub
parent 124109ffcf
commit e4857082a3

View File

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