Files
tbd-station-14/Content.Server/Warps/WarpPointSystem.cs
2022-05-13 17:59:03 +10:00

19 lines
586 B
C#

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