From db8e1c0393184df3a2b91c7c3739b04964d966c1 Mon Sep 17 00:00:00 2001 From: Latapostrophe Date: Sun, 23 Dec 2018 10:50:36 +0100 Subject: [PATCH] Fix the chat being displayed in singleplayer if there are stillmessages --- src/hu_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hu_stuff.c b/src/hu_stuff.c index 72b1ab27..ea456ba6 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -2001,7 +2001,7 @@ void HU_Drawer(void) { typelines = 1; chat_scrolltime = 0; - if (!OLDCHAT && cv_consolechat.value < 2) // Don't display minimized chat if you set the mode to Window (Hidden) + if (!OLDCHAT && cv_consolechat.value < 2 && netgame) // Don't display minimized chat if you set the mode to Window (Hidden) HU_drawMiniChat(); // draw messages in a cool fashion. }