From 80c4bcb6423cf6b2772c100b6a618b326ca54f62 Mon Sep 17 00:00:00 2001 From: Timemaster99 <57200767+Timemaster99@users.noreply.github.com> Date: Tue, 9 Apr 2024 16:10:05 -0400 Subject: [PATCH] Deleted old component Signed-off-by: Timemaster99 <57200767+Timemaster99@users.noreply.github.com> --- .../EmitSoundOnInteractUsingComponent.cs | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 Content.Server/Sound/Components/EmitSoundOnInteractUsingComponent.cs 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 = ""; - } -}