From 7262f58756d023e3f85946c191cc4a8d8652860a Mon Sep 17 00:00:00 2001 From: Supositware Date: Thu, 7 Mar 2019 20:56:49 +0100 Subject: [PATCH] Added return --- commands/hidden/owned.js | 2 +- commands/hidden/premium.js | 2 +- commands/hidden/sex.js | 2 +- commands/hidden/unowned.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/hidden/owned.js b/commands/hidden/owned.js index 27dbd81f..9705a6e5 100644 --- a/commands/hidden/owned.js +++ b/commands/hidden/owned.js @@ -16,7 +16,7 @@ class OwnedCommand extends Command { async exec(message) { let ownedMessage = ['TROLOLOLO OWNED EPIC STYLE', 'Owned noob', 'HAHA BRO YOU JUST GOT OOOOOOOOWNED HAHAHAHAHHAHA NOOOB NOOOOB NOOOB OWNED NOOB<:youngtroll:488559163832795136>', ' op op op owned epic style ', 'HAHAHA BRO YOU HAVE BEEN OWNED TROLL BRO STYLE']; ownedMessage = ownedMessage[Math.floor( Math.random() * ownedMessage.length )]; - message.channel.send(ownedMessage); + return message.channel.send(ownedMessage); } } diff --git a/commands/hidden/premium.js b/commands/hidden/premium.js index 967f6917..10cc62e8 100644 --- a/commands/hidden/premium.js +++ b/commands/hidden/premium.js @@ -15,7 +15,7 @@ class premiumCommand extends Command { } async exec(message) { - message.channel.send('EPIC TF2 FEATURE HERE !!!!!!111111 YOU CAN FLY AND CHEAT !!!!!!!!!!!!!!!!! ALSO PREMIUM SONG AND ANNOY EVERYONE AND FLEX ON EM HATERS WITH CUSTOM SKIN!!!!'); + return message.channel.send('EPIC TF2 FEATURE HERE !!!!!!111111 YOU CAN FLY AND CHEAT !!!!!!!!!!!!!!!!! ALSO PREMIUM SONG AND ANNOY EVERYONE AND FLEX ON EM HATERS WITH CUSTOM SKIN!!!!'); } } diff --git a/commands/hidden/sex.js b/commands/hidden/sex.js index 65782d8d..f6bf7673 100644 --- a/commands/hidden/sex.js +++ b/commands/hidden/sex.js @@ -14,7 +14,7 @@ class sexCommand extends Command { } async exec(message) { - message.channel.send('69\nHaha lol Le sex numbers xDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD'); + return message.channel.send('69\nHaha lol Le sex numbers xDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD'); } } diff --git a/commands/hidden/unowned.js b/commands/hidden/unowned.js index 8b6c447a..2e99b500 100644 --- a/commands/hidden/unowned.js +++ b/commands/hidden/unowned.js @@ -17,7 +17,7 @@ class unownedCommand extends Command { if (message.author.id == '267065637183029248') { return message.channel.send('You have been sucessfully unowned'); } - message.channel.send('You can\'t unown what has already been owned <:classictroll:488559136494321703>'); + return message.channel.send('You can\'t unown what has already been owned <:classictroll:488559136494321703>'); } }