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 marked = ctx.ReadVar("marked") as IEnumerable; return marked ?? Array.Empty(); } }