From 5f350b2bb1d0e5b6809c72ebd4f396a9f83b9dc4 Mon Sep 17 00:00:00 2001 From: TimePath Date: Wed, 16 Sep 2015 10:12:15 +1000 Subject: [PATCH] Fix chat issues when in developer mode --- qcsrc/client/main.qc | 2 +- qcsrc/common/notifications.qc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/main.qc b/qcsrc/client/main.qc index 194cde883..17a3fce1c 100644 --- a/qcsrc/client/main.qc +++ b/qcsrc/client/main.qc @@ -985,7 +985,7 @@ void CSQC_Parse_Print(string strMessage) if(autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_Print(\"%s\")\n", strMessage); - LOG_INFO(ColorTranslateRGB(strMessage)); + print(ColorTranslateRGB(strMessage)); } // CSQC_Parse_CenterPrint : Provides the centerprint_hud string in the first parameter that the server provided. diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index b040a5368..16521a849 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -1550,7 +1550,7 @@ void Local_Notification(int net_type, int net_name, ...count) case MSG_INFO: { - LOG_INFO( + print( Local_Notification_sprintf( notif.nent_string, notif.nent_args, -- 2.39.2