This commit is contained in:
Dragon Fire
2021-02-07 10:29:57 -05:00
parent f39b0dec2e
commit 3616d95776
+1 -2
View File
@@ -174,13 +174,12 @@ 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));
game.move(choice[0], choice[1]);
console.log(gameState.pieces[choice[0]]);
if (gameState.pieces[choice[0]].toUpperCase() === 'P') {
fiftyRuleMove = 0;
} else {
fiftyRuleMove++;
}
game.move(choice[0], choice[1]);
}
}
this.client.games.delete(msg.channel.id);