player shortcuts: ignore numpad

This commit is contained in:
Samantaz Fox 2022-02-08 00:01:53 +01:00
parent f73aef33f0
commit 3c882cff6e
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 3 additions and 0 deletions

View File

@ -612,6 +612,9 @@ window.addEventListener('keydown', e => {
case '7':
case '8':
case '9':
// Ignore numpad numbers
if (code > 57) break;
const percent = (code - 48) * 10;
action = set_time_percent.bind(this, percent);
break;