From 35c0f54f033a223bb067529120742e9c1908b421 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 28 Oct 2020 14:36:38 -0400 Subject: [PATCH] Fix --- commands/games-sp/whos-that-pokemon.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/games-sp/whos-that-pokemon.js b/commands/games-sp/whos-that-pokemon.js index 6e4db770..18697258 100644 --- a/commands/games-sp/whos-that-pokemon.js +++ b/commands/games-sp/whos-that-pokemon.js @@ -89,6 +89,7 @@ module.exports = class WhosThatPokemonCommand extends Command { if (hide) { const silhouetteCanvas = createCanvas(pkmn.width, pkmn.height); const silhouetteCtx = silhouetteCanvas.getContext('2d'); + silhouetteCtx.drawImage(pkmn, 0, 0); silhouette(silhouetteCtx, 0, 0, pkmn.width, pkmn.height); ctx.drawImage(silhouetteCanvas, 30, 39, 200, 200); } else {