X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FCircular.js;h=333ad3208967639637d7e04bc0d2fb173f963338;hp=47758442128409c3ee787bec9bf7560d9e426602;hb=4313762da3237b04f204e121a20cab3ba7bb5dd2;hpb=cee75a57d2f4f89c89d64cefbab55d839a238ed9 diff --git a/client/src/variants/Circular.js b/client/src/variants/Circular.js index 47758442..333ad320 100644 --- a/client/src/variants/Circular.js +++ b/client/src/variants/Circular.js @@ -35,8 +35,8 @@ export class CircularRules extends ChessRules { this.pawnFlags = flags; } - static GenRandInitFen(randomness) { - if (randomness == 0) { + static GenRandInitFen(options) { + if (options.randomness == 0) { return "8/8/pppppppp/rnbqkbnr/8/8/PPPPPPPP/RNBQKBNR " + "w 0 1111111111111111"; } @@ -44,7 +44,7 @@ export class CircularRules extends ChessRules { let pieces = { w: new Array(8), b: new Array(8) }; // Shuffle pieces on first and last rank for (let c of ["w", "b"]) { - if (c == 'b' && randomness == 1) { + if (c == 'b' && options.randomness == 1) { pieces['b'] = pieces['w']; break; } @@ -92,7 +92,7 @@ export class CircularRules extends ChessRules { let j = y + step[1]; while (V.OnBoard(i, j) && this.board[i][j] == V.EMPTY) { moves.push(this.getBasicMove([x, y], [i, j])); - if (oneStep !== undefined) continue outerLoop; + if (oneStep) continue outerLoop; i = V.ComputeX(i + step[0]); j += step[1]; }