.resetperms command ignored permission system.

This commit is contained in:
Kwoth 2016-10-12 23:48:54 +02:00
parent 337ee0b1e0
commit 02338876bf

View File

@ -245,11 +245,12 @@ namespace NadekoBot.Services
} }
_log.Info("Permissions retrieved"); _log.Info("Permissions retrieved");
var cmd = commands[i]; var cmd = commands[i];
bool resetCommand = cmd.Name == "ResetPermissions";
//check permissions //check permissions
if (guild != null) if (guild != null)
{ {
int index; int index;
if (!rootPerm.AsEnumerable().CheckPermissions(message, cmd.Text, cmd.Module.Name, out index)) if (!resetCommand && !rootPerm.AsEnumerable().CheckPermissions(message, cmd.Text, cmd.Module.Name, out index))
{ {
var returnMsg = $"Permission number #{index + 1} **{rootPerm.GetAt(index).GetCommand()}** is preventing this action."; var returnMsg = $"Permission number #{index + 1} **{rootPerm.GetAt(index).GetCommand()}** is preventing this action.";
return new Tuple<Command, bool, IResult>(cmd, verbose, SearchResult.FromError(CommandError.Exception, returnMsg)); return new Tuple<Command, bool, IResult>(cmd, verbose, SearchResult.FromError(CommandError.Exception, returnMsg));