diff --git a/commands/games-mp/chess.js b/commands/games-mp/chess.js index 0166eba0..7801f7f2 100644 --- a/commands/games-mp/chess.js +++ b/commands/games-mp/chess.js @@ -174,8 +174,8 @@ module.exports = class ChessCommand extends Command { if (gameState.turn === 'black') blackTime -= timeTaken - 5000; if (gameState.turn === 'white') whiteTime -= timeTaken - 5000; const choice = this.parseSAN(gameState, moves, turn.first().content.toUpperCase().match(turnRegex)); - console.log(choice); game.move(choice[0], choice[1]); + console.log(gameState.pieces[choice[0]]); if (gameState.pieces[choice[0]].toUpperCase() === 'P') { fiftyRuleMove = 0; } else {