From 451c6396a7592c4a5a25029198238718bed41d01 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 21 Apr 2020 18:53:11 -0400 Subject: [PATCH] Fix --- commands/games-sp/horse-race.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/horse-race.js b/commands/games-sp/horse-race.js index 763ff2c5..e733e545 100644 --- a/commands/games-sp/horse-race.js +++ b/commands/games-sp/horse-race.js @@ -87,7 +87,7 @@ module.exports = class HorseRaceCommand extends Command { const horseImg = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'horse-race', 'horse.png')); const canvas = createCanvas(lb.width, lb.height); const ctx = canvas.getContext('2d'); - ctx.drawImage(base, 0, 0); + ctx.drawImage(lb, 0, 0); ctx.font = '34px Paladins'; ctx.textAlign = 'center'; ctx.textBaseline = 'middle';