diff --git a/Content.Server/Sound/Components/EmitSoundOnInteractUsingComponent.cs b/Content.Server/Sound/Components/EmitSoundOnInteractUsingComponent.cs deleted file mode 100644 index 0c82cda3864..00000000000 --- a/Content.Server/Sound/Components/EmitSoundOnInteractUsingComponent.cs +++ /dev/null @@ -1,14 +0,0 @@ -using Content.Shared.Sound.Components; - -namespace Content.Server.Sound.Components -{ - /// - /// Whenever this item is used upon by a specific entity prototype in the hand of a user, play a sound - /// - [RegisterComponent] - public sealed partial class EmitSoundOnInteractUsingComponent : BaseEmitSoundComponent - { - [DataField("UsedItemID")] - public string UsedItemID = ""; - } -}