forked from Supositware/Haha-Yes
fixed despacito normal behaviour
This commit is contained in:
parent
5618e2470f
commit
8d271be6a3
1 changed files with 11 additions and 12 deletions
|
@ -22,25 +22,24 @@ module.exports = class DespacitoCommand extends Command {
|
|||
}
|
||||
|
||||
async run(message, { user }) {
|
||||
const canvas = createCanvas(660, 660);
|
||||
const ctx = canvas.getContext('2d');
|
||||
const background = await loadImage(user.avatarURL);
|
||||
ctx.drawImage(background, 5, 12, canvas.width, canvas.height);
|
||||
const { body: buffer } = await superagent.get('https://image.noelshack.com/fichiers/2018/41/6/1539381851-untitled.png');
|
||||
const bg = await loadImage(buffer);
|
||||
ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);
|
||||
const attachment = new Discord.Attachment(canvas.toBuffer(), 'despacito.png');
|
||||
|
||||
if (!user) {
|
||||
const number = Object.keys(responseObject).length;
|
||||
const despacitoNumber = Math.floor (Math.random() * (number - 1 + 1)) + 1;
|
||||
if (!user)
|
||||
return message.channel.send({files: [responseObject[despacitoNumber]]});
|
||||
} else if (user.id === message.author.id) {
|
||||
return message.channel.send({files: [responseObject[despacitoNumber]]});
|
||||
} 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 {
|
||||
const canvas = createCanvas(660, 660);
|
||||
const ctx = canvas.getContext('2d');
|
||||
const background = await loadImage(user.avatarURL);
|
||||
ctx.drawImage(background, 5, 12, canvas.width, canvas.height);
|
||||
const { body: buffer } = await superagent.get('https://image.noelshack.com/fichiers/2018/41/6/1539381851-untitled.png');
|
||||
const bg = await loadImage(buffer);
|
||||
ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);
|
||||
const attachment = new Discord.Attachment(canvas.toBuffer(), 'despacito.png');
|
||||
|
||||
message.delete();
|
||||
message.say(`${user}, you have been despacitoad`, attachment);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue