diff --git a/lib.js b/lib.js index 585f27b..508c102 100644 --- a/lib.js +++ b/lib.js @@ -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) }