From ecd0128519e9c76273cbdad588944de2b2c7dc95 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 29 Jan 2021 17:50:51 -0500 Subject: [PATCH] Fix --- commands/games-mp/car-race.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games-mp/car-race.js b/commands/games-mp/car-race.js index eaa199d1..e6a0dd66 100644 --- a/commands/games-mp/car-race.js +++ b/commands/games-mp/car-race.js @@ -408,14 +408,14 @@ module.exports = class CarRaceCommand extends Command { ctx.fillRect(105, 45, 135, 135); ctx.drawImage(userData.avatar, 110, 50, 125, 125); if (turnWin && turnWin.id === userData.user.id) { - ctx.drawImage(stars, 95, 0, 150, 125); + ctx.drawImage(stars, 85, 0, 175, 150); } else if (turnWin) { greyscale(ctx, 110, 50, 125, 125); } ctx.fillRect(bg.width - 115 - 125, 45, 135, 135); ctx.drawImage(oppoData.avatar, bg.width - 110 - 125, 50, 125, 125); if (turnWin && turnWin.id === oppoData.user.id) { - ctx.drawImage(stars, bg.width - 110 - 125 - 15, 0, 150, 125); + ctx.drawImage(stars, bg.width - 110 - 125 - 25, 0, 175, 150); } else if (turnWin) { greyscale(ctx, bg.width - 110 - 125, 50, 125, 125); }