using Content.Shared.Interaction.Events; namespace Content.Shared.Nyanotrasen.Interaction { public sealed class NoNormalInteractionSystem : EntitySystem { public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnInteractionAttempt); } private void OnInteractionAttempt(EntityUid uid, NoNormalInteractionComponent component, InteractionAttemptEvent args) { args.Cancelled = true; } } }