26 lines
692 B
C#
26 lines
692 B
C#
using Content.Server.Shuttles.Events;
|
|
|
|
namespace Content.Server.Shipyard;
|
|
|
|
public sealed class MapDeleterShuttleSystem : EntitySystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
SubscribeLocalEvent<MapDeleterShuttleComponent, FTLStartedEvent>(OnFTLStarted);
|
|
}
|
|
|
|
private void OnFTLStarted(Entity<MapDeleterShuttleComponent> ent, ref FTLStartedEvent args)
|
|
{
|
|
if (ent.Comp.Enabled)
|
|
Del(args.FromMapUid);
|
|
RemComp<MapDeleterShuttleComponent>(ent); // prevent the shuttle becoming a WMD
|
|
}
|
|
|
|
public void Enable(EntityUid shuttle)
|
|
{
|
|
EnsureComp<MapDeleterShuttleComponent>(shuttle).Enabled = true;
|
|
}
|
|
}
|