diff options
author | James Haley | 2013-09-15 20:28:32 +0000 |
---|---|---|
committer | James Haley | 2013-09-15 20:28:32 +0000 |
commit | 9771bde7807a3292e2abafd012abd4b479e2b110 (patch) | |
tree | e549ff9d59d04cff41e97c939bea4fa8dd2ad512 /src/strife | |
parent | f4eb9088523aef3946f02cd45953d14760c598c6 (diff) | |
download | chocolate-doom-9771bde7807a3292e2abafd012abd4b479e2b110.tar.gz chocolate-doom-9771bde7807a3292e2abafd012abd4b479e2b110.tar.bz2 chocolate-doom-9771bde7807a3292e2abafd012abd4b479e2b110.zip |
Re-enable netgame check on code that enters chat state.
Subversion-branch: /branches/v2-branch
Subversion-revision: 2647
Diffstat (limited to 'src/strife')
-rw-r--r-- | src/strife/hu_stuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strife/hu_stuff.c b/src/strife/hu_stuff.c index a7780a44..6ee62907 100644 --- a/src/strife/hu_stuff.c +++ b/src/strife/hu_stuff.c @@ -568,7 +568,7 @@ boolean HU_Responder(event_t *ev) message_counter = HU_MSGTIMEOUT; eatkey = true; } - else if (/*netgame && */ev->data2 == key_multi_msg) + else if (netgame && ev->data2 == key_multi_msg) { eatkey = chat_on = true; HUlib_resetIText(&w_chat); |