diff options
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index c51083151..a04a20512 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -1010,7 +1010,9 @@ int Client::gameExec() #endif } - guiInput->pushInput(event); + if (inputManager.handleEvent(event)) + continue; + #ifdef USE_MUMBLE if (player_node && mumbleManager) { |