Fix openahelp and quit command perms (#5763)

Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
This commit is contained in:
metalgearsloth
2021-12-13 16:45:49 +11:00
committed by GitHub
parent 2d773fa983
commit f110e28021
15 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
using System;
using JetBrains.Annotations;
using Robust.Shared.Console;
namespace Content.Shared.Administration
{
/// <summary>
/// Specifies that a command can be executed by any player.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
[BaseTypeRequired(typeof(IConsoleCommand))]
[MeansImplicitUse]
public sealed class AnyCommandAttribute : Attribute
{
}
}