X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FUpsidedown.js;h=43f3825797a376777b66f8571587f542b668f7a9;hb=1a8e3d26325eeffdebf3132408312f274234ce14;hp=207682408186ec6d92fdb730082f9c42c4b71fb2;hpb=32f6285ee325a14286562a53baefc647201df2af;p=vchess.git diff --git a/client/src/variants/Upsidedown.js b/client/src/variants/Upsidedown.js index 20768240..43f38257 100644 --- a/client/src/variants/Upsidedown.js +++ b/client/src/variants/Upsidedown.js @@ -3,11 +3,8 @@ import { randInt } from "@/utils/alea"; import { ArrayFun } from "@/utils/array"; export class UpsidedownRules extends ChessRules { - static get HasFlags() { - return false; - } - static get HasCastle() { + static get HasFlags() { return false; } @@ -73,11 +70,13 @@ export class UpsidedownRules extends ChessRules { pieces["w"].join("").toUpperCase() + "/PPPPPPPP/8/8/8/8/pppppppp/" + pieces["b"].join("") + + // No castle, no en-passant: " w 0" - ); //no castle, no en-passant + ); } static get SEARCH_DEPTH() { return 2; } + };