X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=public%2Fjavascripts%2Fvariants%2FAtomic.js;h=2b7b1ac343693c7f13cde637265f7f3e181086b0;hp=f32e21d1ff29717bc608ef825e0808de8bfdd254;hb=2526c041baf44968b0aa7b98af56730e88f6a595;hpb=43c0f1d8ead5eb867a78ad00c0983d70e07fe4bb diff --git a/public/javascripts/variants/Atomic.js b/public/javascripts/variants/Atomic.js index f32e21d1..2b7b1ac3 100644 --- a/public/javascripts/variants/Atomic.js +++ b/public/javascripts/variants/Atomic.js @@ -72,7 +72,7 @@ class AtomicRules extends ChessRules && Math.abs(this.kingPos[c][1]-move.end.y) <= 1) { this.kingPos[c] = [-1,-1]; - this.flags[c] = [false,false]; + this.castleFlags[c] = [false,false]; } // Did we explode opponent king ? @@ -80,7 +80,7 @@ class AtomicRules extends ChessRules && Math.abs(this.kingPos[oppCol][1]-move.end.y) <= 1) { this.kingPos[oppCol] = [-1,-1]; - this.flags[oppCol] = [false,false]; + this.castleFlags[oppCol] = [false,false]; } else { @@ -88,9 +88,9 @@ class AtomicRules extends ChessRules if (Math.abs(move.end.x-oppFirstRank) <= 1) { if (Math.abs(move.end.y-this.INIT_COL_ROOK[oppCol][0]) <= 1) - this.flags[oppCol][0] = false; + this.castleFlags[oppCol][0] = false; if (Math.abs(move.end.y-this.INIT_COL_ROOK[oppCol][1]) <= 1) - this.flags[oppCol][1] = false; + this.castleFlags[oppCol][1] = false; } } }