This commit is contained in:
Adrien MALINGREY 2023-04-24 22:24:51 +02:00
parent 0d5bbc77b6
commit fb34ef72dc

3
app.js
View File

@ -733,7 +733,8 @@ function onkeydown(event) {
actionsQueue.unshift(action)
scheduler.clearTimeout(repeat)
scheduler.clearInterval(autorepeat)
scheduler.setTimeout(repeat, settings.das)
if (action == playerActions.softDrop) scheduler.setInterval(autorepeat, settings.fallPeriod/20)
else scheduler.setTimeout(repeat, settings.das)
}
}
}