We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2146686 commit 7cc7a3bCopy full SHA for 7cc7a3b
1 file changed
client/input.js
@@ -71,6 +71,7 @@ window.setupInput = () => {
71
}
72
73
window.onkeydown = e => {
74
+ if (e.repeat) return;
75
window.input.flushInputHooks();
76
if(e.keyCode >= 112 && e.keyCode <= 130 && e.keyCode !== 113) return;
77
window.input.keyDown(e.keyCode);
0 commit comments