using NitroxModel.DataStructures.GameLogic; using NitroxModel.Packets; using NitroxServer.ConsoleCommands.Abstract; using NitroxServer.ConsoleCommands.Abstract.Type; namespace NitroxServer.ConsoleCommands { internal class DeopCommand : Command { public DeopCommand() : base("deop", Perms.ADMIN, "Removes admin rights from user") { AddParameter(new TypePlayer("name", true, "Username to remove admin rights from")); } protected override void Execute(CallArgs args) { Player targetPlayer = args.Get(0); targetPlayer.Permissions = Perms.PLAYER; // Need to notify him so that he no longer shows admin stuff on client (which would in any way stop working) targetPlayer.SendPacket(new PermsChanged(targetPlayer.Permissions)); SendMessage(targetPlayer, "You were demoted to PLAYER"); SendMessage(args.Sender, $"Updated {targetPlayer.Name}\'s permissions to PLAYER"); } } }