* Engine namespace changes.
* Automated remove redundant using statements.
* Simplified Graphics namespace.
* Apparently the container system stores full type names in the map file.😞 This updates those names.
* API Changes to LocalizationManager.LoadCulture.
* Update submodule to v0.3.2
37 lines
1016 B
C#
37 lines
1016 B
C#
using Robust.Server.Player;
|
|
using Robust.Shared.Console;
|
|
using Robust.Shared.IoC;
|
|
|
|
#nullable enable
|
|
|
|
namespace Content.Server.Administration.Commands
|
|
{
|
|
[AnyCommand]
|
|
public class ReAdminCommand : IConsoleCommand
|
|
{
|
|
public string Command => "readmin";
|
|
public string Description => "Re-admins you if you previously de-adminned.";
|
|
public string Help => "Usage: readmin";
|
|
|
|
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
var player = shell.Player as IPlayerSession;
|
|
if (player == null)
|
|
{
|
|
shell.WriteLine("You cannot use this command from the server console.");
|
|
return;
|
|
}
|
|
|
|
var mgr = IoCManager.Resolve<IAdminManager>();
|
|
|
|
if (mgr.GetAdminData(player, includeDeAdmin: true) == null)
|
|
{
|
|
shell.WriteLine("You're not an admin.");
|
|
return;
|
|
}
|
|
|
|
mgr.ReAdmin(player);
|
|
}
|
|
}
|
|
}
|