From 177f4890bf25c2722cbee64293aff4f2f21d4a44 Mon Sep 17 00:00:00 2001 From: Mnemotechnican <69920617+Mnemotechnician@users.noreply.github.com> Date: Sat, 17 Aug 2024 03:35:34 +0300 Subject: [PATCH] Remove the stupid station records check Signed-off-by: Mnemotechnican <69920617+Mnemotechnician@users.noreply.github.com> --- Content.Server/MassMedia/Systems/NewsSystem.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Content.Server/MassMedia/Systems/NewsSystem.cs b/Content.Server/MassMedia/Systems/NewsSystem.cs index 2b18b57ff8b..c313b0d4ccd 100644 --- a/Content.Server/MassMedia/Systems/NewsSystem.cs +++ b/Content.Server/MassMedia/Systems/NewsSystem.cs @@ -141,9 +141,6 @@ private void OnWriteUiPublishMessage(Entity ent, ref NewsWr if (msg.Session.AttachedEntity is not { } author) return; - if (!_accessReader.FindStationRecordKeys(author, out _)) - return; - string? authorName = null; if (_idCardSystem.TryFindIdCard(author, out var idCard)) authorName = idCard.Comp.FullName;