diff --git a/commands/games-mp/chess.js b/commands/games-mp/chess.js index 7da807a8..f11b0186 100644 --- a/commands/games-mp/chess.js +++ b/commands/games-mp/chess.js @@ -70,7 +70,7 @@ module.exports = class ChessCommand extends Command { if (user.bot) { prevPieces = Object.assign({}, game.exportJson().pieces); const now = new Date(); - game.aiMove(3); + game.aiMove(1); const timeTaken = new Date() - now; if (gameState.turn === 'black') blackTime -= timeTaken - 5000; if (gameState.turn === 'white') whiteTime -= timeTaken - 5000;