using Content.Server.Speech.Components; using Content.Shared.Chat; namespace Content.Server.Speech.EntitySystems { public sealed class UnblockableSpeechSystem : EntitySystem { public override void Initialize() { SubscribeLocalEvent(OnCheck); } private void OnCheck(EntityUid uid, UnblockableSpeechComponent component, CheckIgnoreSpeechBlockerEvent args) { args.IgnoreBlocker = true; } } }