diff options
Diffstat (limited to 'src/engine/config/constants.ts')
-rw-r--r-- | src/engine/config/constants.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/config/constants.ts b/src/engine/config/constants.ts index 527bfe1..89f7e92 100644 --- a/src/engine/config/constants.ts +++ b/src/engine/config/constants.ts @@ -31,7 +31,7 @@ export namespace KeyConstants { // value -> [key] from KeyActions export const ActionKeys: Map<Action, string[]> = Object.keys( - KeyActions + KeyActions, ).reduce((acc: Map<Action, string[]>, key) => { const action = KeyActions[key.toLowerCase()]; |