From df4e85c116823740fca460a5f948be676370ae5c Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Tue, 17 Feb 2026 16:37:03 -0500 Subject: [PATCH] Fix lint, it works! --- commands/games-mp/car-race.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/car-race.js b/commands/games-mp/car-race.js index 09e56b8e..c9d905cd 100644 --- a/commands/games-mp/car-race.js +++ b/commands/games-mp/car-race.js @@ -381,7 +381,7 @@ module.exports = class CarRaceCommand extends Command { const oppoCarX = oppoData.spaces < 7 ? -155 + (77 * oppoData.spaces) : bg.width - 155; if (turnWin && oppoData.spaces > 0) { motionBlur(ctx, oppoData.car, oppoCarX, 208, oppoData.car.width, oppoData.car.height); - if (oppoData.trail && 0) { + if (oppoData.trail && oppoCarX > 0) { for (let x = oppoCarX - oppoData.trail.width; x > -oppoData.trail.width; x -= oppoData.trail.width) { motionBlur(ctx, oppoData.trail, x, 208, oppoData.trail.width, oppoData.trail.height); }