using Content.Shared._NF.Shipyard.Components; using Content.Shared.Examine; using Content.Server._NF.Shipyard.Systems; namespace Content.Shared._NF.Shipyard; public sealed partial class ShuttleDeedSystem : EntitySystem { public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnExamined); } private void OnExamined(Entity ent, ref ExaminedEvent args) { var comp = ent.Comp; if (!string.IsNullOrEmpty(comp.ShuttleName)) { var fullName = ShipyardSystem.GetFullName(comp); args.PushMarkup(Loc.GetString("shuttle-deed-examine-text", ("shipname", fullName))); } } }