using Content.Shared.Emag.Systems; using Content.Shared._Impstation.Thaven.Components; namespace Content.Shared._Impstation.Thaven; public abstract class SharedThavenMoodSystem : EntitySystem { public override void Initialize() { base.Initialize(); // SubscribeLocalEvent(OnEmagged); DeltaV: no emagging thavens } protected virtual void OnEmagged(EntityUid uid, ThavenMoodsComponent comp, ref GotEmaggedEvent args) { args.Handled = true; } }