From fd2ebd25f42863a49ddfdf706efd4b7e203d99e1 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Fri, 6 Aug 2021 19:07:02 +0200 Subject: [PATCH] Set admin to true on send command --- commands/admin/send.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/admin/send.js b/commands/admin/send.js index 87e022c..6152ab8 100644 --- a/commands/admin/send.js +++ b/commands/admin/send.js @@ -1,6 +1,7 @@ module.exports = { name: 'send', description: 'Send a message to a specific channel', + admin: true, execute({client, args}){ let channel = args[0]; let message = args.slice(1, args.length)