X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FBishopawns.js;h=57a6051a4eeb1eae29bddfda479ef3c9526b6f8f;hb=4313762da3237b04f204e121a20cab3ba7bb5dd2;hp=67afe66ca66d1ab198df4da206ebb1420dfdab42;hpb=9f88188c42120d985c6c280d2712a3b7f6f7c86c;p=vchess.git diff --git a/client/src/variants/Bishopawns.js b/client/src/variants/Bishopawns.js index 67afe66c..57a6051a 100644 --- a/client/src/variants/Bishopawns.js +++ b/client/src/variants/Bishopawns.js @@ -1,6 +1,11 @@ import { ChessRules } from "@/base_rules"; export class BishopawnsRules extends ChessRules { + + static get Options() { + return null; + } + static get PawnSpecs() { return Object.assign( {}, @@ -52,4 +57,5 @@ export class BishopawnsRules extends ChessRules { static get SEARCH_DEPTH() { return 4; } + };