From 49984be6b6c9a5c9a0a9eb86d3bfb19f2a7d755a Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Sun, 14 Feb 2021 12:07:52 +0100 Subject: [PATCH] fixed say command --- commands/say.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/say.js b/commands/say.js index d2485da..9a86627 100644 --- a/commands/say.js +++ b/commands/say.js @@ -2,6 +2,6 @@ module.exports = { name: 'say', description: 'Repeats arguments', execute(message, args) { - message.channel.send(args.join(" ")) + message.channel.send(args) } }; \ No newline at end of file