From 70067bd8b97b8c679b8eb873dbaf23e24eb4a28c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= Date: Tue, 13 Nov 2018 15:20:23 +0100 Subject: [PATCH] dosent ping user anymore --- commands/fun/despacito.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/commands/fun/despacito.js b/commands/fun/despacito.js index 52eca715..1c909a27 100644 --- a/commands/fun/despacito.js +++ b/commands/fun/despacito.js @@ -33,8 +33,6 @@ module.exports = class DespacitoCommand extends Command { message.say('an error as occured') }) - } else if (user.id === message.author.id) { - return message.say(`Did you just try to despacitoad yourself?`); } else if (user.id === this.client.user.id) { return message.say('Nice try but you wont get me :^)'); } else { @@ -48,7 +46,7 @@ module.exports = class DespacitoCommand extends Command { const attachment = new Discord.Attachment(canvas.toBuffer(), 'despacito.png'); message.delete(); - message.say(`${user}, you have been despacitoad`, attachment).catch(error => { + message.say(`${user.username}, you have been despacito'd`, attachment).catch(error => { message.say('an error as occured') }) }