From e95cee783145e7053c35cafe9deac50d28c5bc80 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 1 Feb 2021 18:04:44 -0500 Subject: [PATCH] Fix --- commands/games-sp/pokemon-advantage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/pokemon-advantage.js b/commands/games-sp/pokemon-advantage.js index 3ed436ab..189e421c 100644 --- a/commands/games-sp/pokemon-advantage.js +++ b/commands/games-sp/pokemon-advantage.js @@ -132,7 +132,7 @@ module.exports = class PokemonAdvantageCommand extends Command { ctx.drawImage(greyCanvas, 261, 12, 175, 175); ctx.drawImage(pkmn1, 41, 12, 175, 175); } else if (winner.id === pokemon2.id) { - ctx.drawImage(stars, 20, 0, 200, 200); + ctx.drawImage(stars, 250, 0, 200, 200); const greyCanvas = createCanvas(pkmn1.width, pkmn1.height); const greyCtx = greyCanvas.getContext('2d'); greyCtx.drawImage(pkmn1, 0, 0);