* - tweak: Nerf spear. * - tweak: Blood bolt barrage. * - add: Cult stuff. * - fix: Cult fixes. * - remove: Garbage. * - fix: Multiple pylons. * - fix: Pylon placement fix. * - add: Lots of cult stuff.
20 lines
515 B
C#
20 lines
515 B
C#
using Content.Shared._White.Cult.Components;
|
|
using Content.Shared.Examine;
|
|
|
|
namespace Content.Shared._White.Cult.Systems;
|
|
|
|
public sealed class DeleteOnDropAttemptSystem : EntitySystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
SubscribeLocalEvent<DeleteOnDropAttemptComponent, ExaminedEvent>(OnExamine);
|
|
}
|
|
|
|
private void OnExamine(Entity<DeleteOnDropAttemptComponent> ent, ref ExaminedEvent args)
|
|
{
|
|
args.PushMarkup(Loc.GetString(ent.Comp.Message));
|
|
}
|
|
}
|