diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index 49f33db0..90721224 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -436,7 +436,7 @@ void Game::handleInput() { // Emotions int emotion = keyboard.getKeyEmoteOffset(event.key.keysym.sym); - if (emotion) + if (emotion != -1) { emoteShortcut->useEmote(emotion); used = true; |