From f4b6414eb55ea8ea62c4c8f2450eca8fa58fbea5 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 22 Nov 2020 10:19:51 -0500 Subject: [PATCH] Fix --- commands/edit-image/yu-gi-oh-gen.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/edit-image/yu-gi-oh-gen.js b/commands/edit-image/yu-gi-oh-gen.js index c066080c..9531ac68 100644 --- a/commands/edit-image/yu-gi-oh-gen.js +++ b/commands/edit-image/yu-gi-oh-gen.js @@ -139,9 +139,9 @@ module.exports = class YuGiOhGenCommand extends Command { typeStr += ' ]'; ctx.fillText(typeStr, 60, 894); ctx.font = '29px Stone Serif'; - ctx.fillText(atk.padStart(4, ' '), 514, 1079); + ctx.fillText(atk.padStart(4, ' '), 514, 1079); if (monsterType === 'link') ctx.fillText(def, 722, 1079); - else ctx.fillText(def.padStart(4, ' '), 675, 1079); + else ctx.fillText(def.padStart(4, ' '), 675, 1079); } else if (type === 'spell') { ctx.font = '35px Stone Serif Small Caps'; ctx.fillText('[ Spell Card ]', 479, 141);