From ea0420698191b48825f5a3b9513aa1e7b234014b Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 4 Dec 2020 00:15:23 +1000 Subject: [PATCH] Remove a redundant real client check from notification code --- 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 6038e6df8..358453e5c 100644 --- a/qcsrc/common/notifications/all.qc +++ b/qcsrc/common/notifications/all.qc @@ -1637,7 +1637,7 @@ void Send_Notification( } default: { - FOREACH_CLIENT(IS_REAL_CLIENT(it) && Notification_ShouldSend(broadcast, it, client), { + FOREACH_CLIENT(Notification_ShouldSend(broadcast, it, client), { RECURSE_FROM_CHOICE(it, continue); }); break; -- 2.39.2