From c061620cb1b5241552520ee6d28bb19f171fb585 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Sun, 3 Feb 2013 16:55:54 -0500 Subject: [PATCH] Fix the broadcast check for Send_Notification --- qcsrc/common/notifications.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index 26505273c..1918eb2dd 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -350,7 +350,7 @@ float Write_Notification(entity client, float sf) void Send_Notification(float broadcast, entity client, float net_type, float net_name, ...count) { - if((broadcast == MSG_BROADCAST || broadcast == MSG_ONE) && net_type && net_name) + if(broadcast && net_type && net_name) { float stringcount = stof(Get_Field_Value(F_STRNUM, net_type, net_name)); float floatcount = stof(Get_Field_Value(F_FLNUM, net_type, net_name)); -- 2.39.2