grenades emit sound on trigger again (#14391)

This commit is contained in:
Slava0135 2023-03-06 07:34:08 +03:00 committed by GitHub
parent ef05382485
commit 295a2c0498
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}