Correct error message when permission check fails.

master
masterhc 1 year ago
parent 44902de3e1
commit f40201ec67

@ -206,6 +206,7 @@ class _Client extends Client
}
let command = this.commands.get(commandName).command
if((needsAdmin && isAdmin) || !needsAdmin) return new command(this).run(message, args);
if(needsAdmin && !isAdmin) return new ErrorMessage(this).send(ErrorType.Permissions, message);
}
new ErrorMessage(this).send(ErrorType.NotOnTheList,message)
}

Loading…
Cancel
Save