diff --git a/Content.Server/Instruments/InstrumentComponent.cs b/Content.Server/Instruments/InstrumentComponent.cs index db9dbb375b..b1fd981cf2 100644 --- a/Content.Server/Instruments/InstrumentComponent.cs +++ b/Content.Server/Instruments/InstrumentComponent.cs @@ -21,8 +21,3 @@ public sealed partial class InstrumentComponent : SharedInstrumentComponent _entMan.GetComponentOrNull(Owner)?.CurrentSingleUser ?? _entMan.GetComponentOrNull(Owner)?.PlayerSession.AttachedEntity; } - -[RegisterComponent] -public sealed partial class ActiveInstrumentComponent : Component -{ -} diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMusicTriggerSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMusicTriggerSystem.cs index c62ed58752..8a0ea261bd 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMusicTriggerSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMusicTriggerSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using Content.Server.Instruments; using Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; +using Content.Shared.Instruments; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Systems;