From 1bac56226cf5244d76a2988e13fde5e70dade0aa Mon Sep 17 00:00:00 2001 From: Kill_Me_I_Noobs <118206719+Vonsant@users.noreply.github.com> Date: Wed, 1 Jan 2025 14:41:17 +0300 Subject: [PATCH] Update HushedSystem.cs --- .../_CorvaxNext/Speech/EntitySystems/HushedSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/_CorvaxNext/Speech/EntitySystems/HushedSystem.cs b/Content.Server/_CorvaxNext/Speech/EntitySystems/HushedSystem.cs index 48183ca8823..0d65738fe25 100644 --- a/Content.Server/_CorvaxNext/Speech/EntitySystems/HushedSystem.cs +++ b/Content.Server/_CorvaxNext/Speech/EntitySystems/HushedSystem.cs @@ -17,8 +17,8 @@ public sealed class HushedSystem : EntitySystem public override void Initialize() { - SubscribeLocalEvent(OnScreamAction, new[] { typeof(VocalSystem) }); - SubscribeLocalEvent(OnEmote, before: new[] { typeof(VocalSystem) }); + SubscribeLocalEvent(OnScreamAction, [typeof(VocalSystem)]); + SubscribeLocalEvent(OnEmote, before: [typeof(VocalSystem)]); } private void OnScreamAction(EntityUid uid, HushedComponent component, ScreamActionEvent args)