diff --git a/commands/bot control/say.js b/commands/bot control/say.js index 10a500e..0eed8a1 100644 --- a/commands/bot control/say.js +++ b/commands/bot control/say.js @@ -9,7 +9,10 @@ module.exports = { async execute(message, args, client) { message.delete() - const msg = args[0] + let msg = "" + for (let i = 0; i < args.length; i++) { + msg += args[i] + ' ' + } message.channel.send(msg) } }; \ No newline at end of file