Delta-v/Content.Shared/_Impstation/Thaven/SharedThavenMoodSystem.cs

19 lines
526 B
C#

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<ThavenMoodsComponent, GotEmaggedEvent>(OnEmagged); DeltaV: no emagging thavens
}
protected virtual void OnEmagged(EntityUid uid, ThavenMoodsComponent comp, ref GotEmaggedEvent args)
{
args.Handled = true;
}
}