From 88dcda9131d0d30ebda5f4773219736ed1beae3d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 16 Apr 2020 22:47:06 -0400 Subject: [PATCH] Fix Heart Drawing --- commands/random-seed/ship.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random-seed/ship.js b/commands/random-seed/ship.js index bf2aaf53..dbd1cdf7 100644 --- a/commands/random-seed/ship.js +++ b/commands/random-seed/ship.js @@ -73,7 +73,7 @@ module.exports = class ShipCommand extends Command { ctx.fillText(`~${level}%~`, 600, 230); ctx.fillText(this.calculateLevelText(level), 600, 296); ctx.font = '90px Pinky Cupid'; - ctx.fillText(level > 49 ? '❤️' : '💔'); + ctx.fillText(level > 49 ? '❤️' : '💔', 600, 100); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'ship.png' }] }); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);