X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FRecycle.js;h=0579de7ade5796ff192d44e4ae5cabaaf8f482ad;hb=2c5d7b20742b802d9c47916915c1114bcfc9a9c3;hp=8b070fac2dd7b9d46509ccc6f08daad56d2a0c4a;hpb=6f2f94374f1e73c375edf732d9425e575e81fff7;p=vchess.git diff --git a/client/src/variants/Recycle.js b/client/src/variants/Recycle.js index 8b070fac..0579de7a 100644 --- a/client/src/variants/Recycle.js +++ b/client/src/variants/Recycle.js @@ -27,13 +27,6 @@ export class RecycleRules extends ChessRules { ); } - getEpSquare(moveOrSquare) { - if (typeof moveOrSquare !== "object" || moveOrSquare.vanish.length > 0) - return super.getEpSquare(moveOrSquare); - // Landing move: no en-passant - return undefined; - } - static GenRandInitFen(randomness) { return ChessRules.GenRandInitFen(randomness) + " 0000000000"; } @@ -181,7 +174,8 @@ export class RecycleRules extends ChessRules { prePlay(move) { super.prePlay(move); - if (move.vanish.length == 2 && move.appear.length == 2) return; //skip castle + // Skip castle: + if (move.vanish.length == 2 && move.appear.length == 2) return; const color = this.turn; if (move.vanish.length == 0) this.reserve[color][move.appear[0].p]--; else if (move.vanish.length == 2 && move.vanish[1].c == color)