From b3616935590e44e4f1968452fa281d52fabeb91c Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 3 Jun 2020 18:52:09 -0400 Subject: [PATCH] Fix --- commands/edit-meme/phoebe-teaching-joey.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/edit-meme/phoebe-teaching-joey.js b/commands/edit-meme/phoebe-teaching-joey.js index b2131f50..0cc5a991 100644 --- a/commands/edit-meme/phoebe-teaching-joey.js +++ b/commands/edit-meme/phoebe-teaching-joey.js @@ -75,6 +75,7 @@ module.exports = class PhoebeTeachingJoeyCommand extends Command { const ctx = canvas.getContext('2d'); ctx.drawImage(base, 0, 0); ctx.fillStyle = 'white'; + ctx.strokeStyle = 'black'; ctx.textBaseline = 'top'; ctx.textAlign = 'center'; let i = 0; @@ -89,6 +90,7 @@ module.exports = class PhoebeTeachingJoeyCommand extends Command { fontSize -= 1; ctx.font = `${fontSize}px Noto`; } + ctx.strokeText(step, x, y, 260); ctx.fillText(step, x, y, 260); j++; }