From 482ef29659816a2e25b80e37d398282217205fcb Mon Sep 17 00:00:00 2001 From: *x1 Date: Tue, 28 May 2024 19:22:29 +0200 Subject: [PATCH] Update say --- commands/bot control/say.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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