X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FUpsidedown.js;h=3149daeae057326a05542b943bae8746daadd155;hb=HEAD;hp=abffd8f917ff9b9d515e9f68073d57a9cce0a648;hpb=0d5335de5c94d780e03ac0aa3279b731c69455cc;p=vchess.git diff --git a/client/src/variants/Upsidedown.js b/client/src/variants/Upsidedown.js index abffd8f9..3149daea 100644 --- a/client/src/variants/Upsidedown.js +++ b/client/src/variants/Upsidedown.js @@ -3,6 +3,7 @@ import { randInt } from "@/utils/alea"; import { ArrayFun } from "@/utils/array"; export class UpsidedownRules extends ChessRules { + static get HasFlags() { return false; } @@ -11,13 +12,13 @@ export class UpsidedownRules extends ChessRules { return false; } - static GenRandInitFen(randomness) { - if (randomness == 0) + static GenRandInitFen(options) { + if (options.randomness == 0) return "RNBQKBNR/PPPPPPPP/8/8/8/8/pppppppp/rnbqkbnr w 0"; let pieces = { w: new Array(8), b: new Array(8) }; for (let c of ["w", "b"]) { - if (c == 'b' && randomness == 1) { + if (c == 'b' && options.randomness == 1) { pieces['b'] = pieces['w']; break; } @@ -77,4 +78,5 @@ export class UpsidedownRules extends ChessRules { static get SEARCH_DEPTH() { return 2; } + };