From 6dfbaf183284435e2538e259348fb2eabc034efb Mon Sep 17 00:00:00 2001 From: sleepyyapril Date: Thu, 16 Jan 2025 21:04:41 -0400 Subject: [PATCH] Subtles can now only be seen by people with PII permission. --- Content.Client/UserInterface/Systems/Chat/ChatUIController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs index 58bbc82b32..b8295cf060 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs @@ -560,7 +560,7 @@ private void UpdateChannelPermissions() CanSendChannels |= ChatSelectChannel.Dead; } - if (_admin.HasFlag(AdminFlags.Admin) && _ghost is { IsGhost: true }) + if (_admin.HasFlag(AdminFlags.Pii) && _ghost is { IsGhost: true }) { FilterableChannels |= ChatChannel.Subtle; }