Set admin to true on send command

This commit is contained in:
SileNce5k 2021-08-06 19:07:02 +02:00
parent d9f29d8267
commit fd2ebd25f4
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

@ -1,6 +1,7 @@
module.exports = { module.exports = {
name: 'send', name: 'send',
description: 'Send a message to a specific channel', description: 'Send a message to a specific channel',
admin: true,
execute({client, args}){ execute({client, args}){
let channel = args[0]; let channel = args[0];
let message = args.slice(1, args.length) let message = args.slice(1, args.length)