Fix bind deserialisation

Fixes #107
This commit is contained in:
Ridan Vandenbergh 2019-08-06 17:28:49 +02:00
parent ba54b66182
commit 01924826bb
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ public class Module {
int key = -1;
try {
key = Keyboard.getKeyIndex(s);
key = Keyboard.getKeyIndex(s.toUpperCase());
} catch (Exception ignored) {}
if (key == 0) return Bind.none();