Fixed
This commit is contained in:
parent
60eebbe506
commit
e1c0cbcdd3
1 changed files with 2 additions and 2 deletions
|
@ -30,12 +30,12 @@ class paintCommand extends Command {
|
||||||
message.channel.send('Processing <a:loadingmin:527579785212329984>')
|
message.channel.send('Processing <a:loadingmin:527579785212329984>')
|
||||||
.then(loadingmsg => loadingmsg.delete(1000));
|
.then(loadingmsg => loadingmsg.delete(1000));
|
||||||
|
|
||||||
const canvas = createCanvas(528, 559);
|
const canvas = createCanvas(488, 400);
|
||||||
const ctx = canvas.getContext('2d');
|
const ctx = canvas.getContext('2d');
|
||||||
const background = await loadImage(image).catch(() => {
|
const background = await loadImage(image).catch(() => {
|
||||||
return message.channel.send('An error as occured, please try again');
|
return message.channel.send('An error as occured, please try again');
|
||||||
});
|
});
|
||||||
ctx.drawImage(background, 50, 50, 480, 450);
|
ctx.drawImage(background, 65, 30, 405, 280);
|
||||||
const { body: buffer } = await superagent.get('https://cdn.discordapp.com/attachments/488483518742134794/542633779601342476/260293545019212.png');
|
const { body: buffer } = await superagent.get('https://cdn.discordapp.com/attachments/488483518742134794/542633779601342476/260293545019212.png');
|
||||||
const bg = await loadImage(buffer);
|
const bg = await loadImage(buffer);
|
||||||
ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);
|
ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);
|
||||||
|
|
Loading…
Reference in a new issue