From b1b0a44b7663b2d59165bba1e5c17b2071aab3dc Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Wed, 17 Feb 2021 03:23:36 +0100 Subject: [PATCH] formatting --- commands/say.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/say.js b/commands/say.js index 3e03663..707a50b 100644 --- a/commands/say.js +++ b/commands/say.js @@ -3,10 +3,10 @@ module.exports = { description: 'Repeats arguments', execute(message, args) { - if(args.length == 0){ - message.channel.send("Can't send empty message"); - }else - message.channel.send(args.join(" ")) + if(args.length == 0) + message.channel.send("Can't send empty message"); + else + message.channel.send(args.join(" ")) } }; \ No newline at end of file