using Content.Shared.Administration; using Robust.Shared.Toolshed; namespace Content.Server.Administration.Toolshed; [ToolshedCommand, AnyCommand] public sealed class MarkedCommand : ToolshedCommand { [CommandImplementation] public IEnumerable Marked(IInvocationContext ctx) { var res = (IEnumerable?)ctx.ReadVar("marked"); res ??= Array.Empty(); return res; } }