From 606044248d27a776ed226670c1380bfb600cb528 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 27 Jan 2021 18:46:19 -0500 Subject: [PATCH] Adjust difficulties --- commands/games-mp/car-race.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/commands/games-mp/car-race.js b/commands/games-mp/car-race.js index b30e0d61..efe83c1f 100644 --- a/commands/games-mp/car-race.js +++ b/commands/games-mp/car-race.js @@ -9,9 +9,10 @@ const cars = fs.readdirSync(path.join(__dirname, '..', '..', 'assets', 'images', const words = ['go', 'zoom', 'drive', 'advance', 'pedal', 'vroom']; const difficulties = { baby: 30000, - easy: 7500, - medium: 5000, - hard: 2500 + easy: 5000, + medium: 2500, + hard: 1000, + impossible: 500 }; module.exports = class CarRaceCommand extends Command {