ECS warppoint (#6409)
This commit is contained in:
20
Content.Server/Warps/WarpPointSystem.cs
Normal file
20
Content.Server/Warps/WarpPointSystem.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Content.Shared.Examine;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Localization;
|
||||
|
||||
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)));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user