Forgot to update move flags in Paco-Sako
authorBenjamin Auder <benjamin.auder@somewhere>
Mon, 4 Jan 2021 18:14:21 +0000 (19:14 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Mon, 4 Jan 2021 18:14:21 +0000 (19:14 +0100)
client/src/variants/Pacosako.js

index b88f2e3..bf84719 100644 (file)
@@ -472,6 +472,7 @@ export class PacosakoRules extends ChessRules {
   }
 
   play(move) {
+    move.flags = JSON.stringify(this.aggregateFlags());
     this.epSquares.push(this.getEpSquare(move));
     // Check if the move is the last of the turn: all cases except releases
     if (!move.released) {
@@ -499,6 +500,7 @@ export class PacosakoRules extends ChessRules {
 
   undo(move) {
     this.epSquares.pop();
+    this.disaggregateFlags(JSON.parse(move.flags));
     V.UndoOnBoard(this.board, move);
     this.lastMoveEnd.pop();
     if (!move.released) {