diff options
Diffstat (limited to 'src/game/client/components/motd.cpp')
| -rw-r--r-- | src/game/client/components/motd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/components/motd.cpp b/src/game/client/components/motd.cpp index 19693390..3b8f2243 100644 --- a/src/game/client/components/motd.cpp +++ b/src/game/client/components/motd.cpp @@ -77,7 +77,7 @@ void MOTD::on_message(int msgtype, void *rawmsg) bool MOTD::on_input(INPUT_EVENT e) { - if(is_active() && e.flags&INPFLAG_PRESS && e.key == KEY_ESC) + if(is_active() && e.flags&INPFLAG_PRESS && e.key == KEY_ESCAPE) { clear(); return true; |