diff --git a/commands/say.js b/commands/say.js index d2485da..3e03663 100644 --- a/commands/say.js +++ b/commands/say.js @@ -2,6 +2,11 @@ module.exports = { name: 'say', description: 'Repeats arguments', execute(message, args) { + + if(args.length == 0){ + message.channel.send("Can't send empty message"); + }else message.channel.send(args.join(" ")) + } }; \ No newline at end of file