diff options
Diffstat (limited to 'src/game/client/gc_client.cpp')
| -rw-r--r-- | src/game/client/gc_client.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/client/gc_client.cpp b/src/game/client/gc_client.cpp index 6bc83af9..bcacfd17 100644 --- a/src/game/client/gc_client.cpp +++ b/src/game/client/gc_client.cpp @@ -896,7 +896,9 @@ void render_game() if(inp_key_down(KEY_ESC)) { - if (chat_mode) + if(server_motd_time) + server_motd_time = 0; + else if (chat_mode) chat_mode = CHATMODE_NONE; else { |