Fix incheck by pawns for checkered
[vchess.git] / public / javascripts / base_rules.js
index f08c272..11de147 100644 (file)
@@ -51,9 +51,9 @@ class ChessRules
        {
                this.moves = moves;
                // Use fen string to initialize variables, flags and board
-               this.initVariables(fen);
                this.board = VariantRules.GetBoard(fen);
                this.flags = VariantRules.GetFlags(fen);
+               this.initVariables(fen);
        }
 
        initVariables(fen)
@@ -712,7 +712,7 @@ class ChessRules
                VariantRules.PlayOnBoard(this.board, move);
        }
 
-       undo(move, ingame)
+       undo(move)
        {
                VariantRules.UndoOnBoard(this.board, move);
                this.epSquares.pop();