From b4a884307ed1e661bf25f64743e1004387706dc4 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Tue, 26 Feb 2013 23:57:48 -0500 Subject: [PATCH] Wait, don't just kill ALL notifications of the same type... durr! --- qcsrc/common/notifications.qc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index 1fc3a0521..6917821da 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -626,8 +626,12 @@ void Kill_Notification(float broadcast, entity client, float net_type, float net // now kill the old send notification entity if(notif.nent_net_type == net_type) { + if(net_name) + { if(notif.nent_net_name == net_name) { notif.think(); } } + else + { notif.think(); } + print(sprintf("killed '%s'\n", notif.classname)); - notif.think(); } } } -- 2.39.2