From be8b56333554c354e1af17ea167ace6ad728d014 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 1 Jul 2020 11:17:03 -0400 Subject: [PATCH] Fix --- commands/edit-image/wild-pokemon.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/edit-image/wild-pokemon.js b/commands/edit-image/wild-pokemon.js index 74455c33..1484b479 100644 --- a/commands/edit-image/wild-pokemon.js +++ b/commands/edit-image/wild-pokemon.js @@ -68,6 +68,7 @@ module.exports = class WildPokemonCommand extends Command { ctx.drawImage(data, x, y, width * 0.15, height * 0.15); ctx.drawImage(canvas, x, y, width * 0.15, height * 0.15, x, y, width, height); ctx.imageSmoothingEnabled = true; + greyscale(ctx, x, y, width, height); ctx.textBaseline = 'top'; ctx.font = '16px Pokemon GB'; ctx.fillText(name.toUpperCase(), 110, 203, 215);