using Content.Shared.Examine; namespace Content.Server.Warps; public sealed class WarpPointSystem : EntitySystem { public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnWarpPointExamine); } private static void OnWarpPointExamine(EntityUid uid, WarpPointComponent component, ExaminedEvent args) { var loc = component.Location == null ? "" : $"'{component.Location}'"; args.PushText(Loc.GetString("warp-point-component-on-examine-success", ("location", loc))); } }