From f40201ec678e78f5baec7ffc735cf4f1a93175dd Mon Sep 17 00:00:00 2001 From: masterhc Date: Sun, 4 Feb 2024 10:37:10 +0000 Subject: [PATCH] Correct error message when permission check fails. --- lib.js | 1 + 1 file changed, 1 insertion(+) 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) }