X-Git-Url: https://git.auder.net/img/rock_paper_scissors_lizard_spock.gif?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FGrasshopper.js;h=82caa9f43819702d533d9e47606f6c9ec9929eab;hb=11589e7c4bb1b69473588d133db8b6d1d37b8fee;hp=8f24340ad9e6b9b90ac3ff4288be6e19a8f9d6c6;hpb=b627d118ab41dccbda68f4523de8f063d0fa89df;p=vchess.git diff --git a/client/src/variants/Grasshopper.js b/client/src/variants/Grasshopper.js index 8f24340a..82caa9f4 100644 --- a/client/src/variants/Grasshopper.js +++ b/client/src/variants/Grasshopper.js @@ -133,9 +133,13 @@ export const VariantRules = class GrasshopperRules extends ChessRules { ); } - static GenRandInitFen() { - return ChessRules.GenRandInitFen() - .replace("w 0 1111 -", "w 0 1111") + static get SEARCH_DEPTH() { + return 2; + } + + static GenRandInitFen(randomness) { + return ChessRules.GenRandInitFen(randomness) + .slice(0, -2) .replace( "/pppppppp/8/8/8/8/PPPPPPPP/", "/gggggggg/pppppppp/8/8/PPPPPPPP/GGGGGGGG/"