Added return
This commit is contained in:
parent
06755be146
commit
7262f58756
4 changed files with 4 additions and 4 deletions
|
@ -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>', '<a:op:516341492982218756> op op op owned epic style <a:op:516341492982218756>', '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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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!!!!');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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>');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue