X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FKnightpawns.js;h=bf3e773308adef49340344f73d04f6fb9776caa9;hb=HEAD;hp=9647653506820aaa6fed929ab3d033d437564ab2;hpb=9f88188c42120d985c6c280d2712a3b7f6f7c86c;p=vchess.git diff --git a/client/src/variants/Knightpawns.js b/client/src/variants/Knightpawns.js index 96476535..bf3e7733 100644 --- a/client/src/variants/Knightpawns.js +++ b/client/src/variants/Knightpawns.js @@ -1,6 +1,11 @@ import { ChessRules } from "@/base_rules"; export class KnightpawnsRules extends ChessRules { + + static get Options() { + return null; + } + static get PawnSpecs() { return Object.assign( {}, @@ -48,4 +53,5 @@ export class KnightpawnsRules extends ChessRules { postPlay() {} postUndo() {} + };