using Content.Client.Instruments; using Content.Shared.Instruments; using Content.Shared.Traits.Assorted.Systems; namespace Content.Client.Traits; public sealed class SingerSystem : SharedSingerSystem { protected override SharedInstrumentComponent EnsureInstrumentComp(EntityUid uid) { return EnsureComp(uid); // I hate this, but it's the only way. } }