From: z411 Date: Fri, 23 Apr 2021 20:15:56 +0000 (-0400) Subject: Fix spectator only announcers X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=74ed4cce84191b876f49085d7097240ed5bd8008;p=xonotic%2Fxonotic-data.pk3dir.git Fix spectator only announcers --- 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;