From: Slava0135 <40753025+Slava0135@users.noreply.github.com> Date: Mon, 6 Mar 2023 04:34:08 +0000 (+0300) Subject: grenades emit sound on trigger again (#14391) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=295a2c0498803d8daea6adb780b66659b512d03f;p=space-station-14.git grenades emit sound on trigger again (#14391) --- diff --git a/Content.Server/Sound/EmitSoundSystem.cs b/Content.Server/Sound/EmitSoundSystem.cs index e4defb8acc..bc271a8351 100644 --- a/Content.Server/Sound/EmitSoundSystem.cs +++ b/Content.Server/Sound/EmitSoundSystem.cs @@ -47,7 +47,7 @@ public sealed class EmitSoundSystem : SharedEmitSoundSystem private void HandleEmitSoundOnTrigger(EntityUid uid, EmitSoundOnTriggerComponent component, TriggerEvent args) { - TryEmitSound(component, args.User); + TryEmitSound(component); args.Handled = true; } }