From 74ed4cce84191b876f49085d7097240ed5bd8008 Mon Sep 17 00:00:00 2001 From: z411 Date: Fri, 23 Apr 2021 16:15:56 -0400 Subject: [PATCH] Fix spectator only announcers --- 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 f99241117..ff3644d34 100644 --- a/qcsrc/common/notifications/all.qc +++ b/qcsrc/common/notifications/all.qc @@ -135,7 +135,7 @@ bool Notification_ShouldSend(NOTIF broadcast, entity to_client, entity other_cli ); case NOTIF_ALL_SPEC: return ( - (IS_SPEC(to_client)) + (IS_SPEC(to_client) || IS_OBSERVER(to_client)) ); case NOTIF_ALL: return true; -- 2.39.2