From c88e4741971e27a1ab8fa034ae7893e84c919912 Mon Sep 17 00:00:00 2001 From: TimePath Date: Tue, 15 Mar 2016 21:58:33 +1100 Subject: [PATCH] Fix NOTIF_ALL notifications --- qcsrc/common/notifications/all.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/notifications/all.qc b/qcsrc/common/notifications/all.qc index 60fd62599..ad2013dfa 100644 --- a/qcsrc/common/notifications/all.qc +++ b/qcsrc/common/notifications/all.qc @@ -1548,7 +1548,7 @@ void Send_Notification( MSG net_type, Notification net_name, ...count) { - if (!IS_REAL_CLIENT(client)) return; + if (broadcast != NOTIF_ALL && broadcast != NOTIF_ALL_EXCEPT && !IS_REAL_CLIENT(client)) return; entity notif = net_name; string parms = sprintf("%s, '%s', %s, %s", Get_Notif_BroadcastName(broadcast), -- 2.39.2