diff --git a/Content.Server/GameObjects/Components/Projectiles/ThrownItemComponent.cs b/Content.Server/GameObjects/Components/Projectiles/ThrownItemComponent.cs index a7e0423f97..8caf6ca3c6 100644 --- a/Content.Server/GameObjects/Components/Projectiles/ThrownItemComponent.cs +++ b/Content.Server/GameObjects/Components/Projectiles/ThrownItemComponent.cs @@ -1,8 +1,9 @@ -using Content.Server.GameObjects.EntitySystems.Click; +using Content.Server.GameObjects.EntitySystems.Click; using Content.Shared.Damage; using Content.Shared.GameObjects; using Content.Shared.GameObjects.Components.Damage; using Content.Shared.Physics; +using Robust.Server.GameObjects.EntitySystems; using Robust.Shared.GameObjects; using Robust.Shared.GameObjects.Components; using Robust.Shared.GameObjects.Components.Timers; @@ -98,6 +99,9 @@ namespace Content.Server.GameObjects.Components.Projectiles var controller = comp.EnsureController(); controller.Push(direction, speed); + EntitySystem.Get() + .PlayFromEntity("/Audio/Effects/toss.ogg", Owner); + StartStopTimer(); } diff --git a/Resources/Audio/Effects/toss.ogg b/Resources/Audio/Effects/toss.ogg new file mode 100644 index 0000000000..6238825981 Binary files /dev/null and b/Resources/Audio/Effects/toss.ogg differ