Compare commits

...

1 Commits

Author SHA1 Message Date
73b4046a07 fix direction right 2022-08-11 16:28:50 +02:00

3
app.js
View File

@@ -52,7 +52,8 @@ async function run() {
if (button) {
if (keyCooldown > 0)
return;
if (KEYMAP[button]) {
if (KEYMAP[button] !== undefined) {
console.log()
currentKey = button;
keyCooldown = 10;
}