X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FApocalypse.js;h=fc309155877bc3f037125c2fb35f77178ec8a761;hb=01ad8e179268dc62efef0823edde2b09236f9476;hp=77d17c0e41d281d23e17798799302dae97bf930a;hpb=e50a802531b99829c533f22ecd21e359e7e1e049;p=vchess.git diff --git a/client/src/variants/Apocalypse.js b/client/src/variants/Apocalypse.js index 77d17c0e..fc309155 100644 --- a/client/src/variants/Apocalypse.js +++ b/client/src/variants/Apocalypse.js @@ -2,6 +2,11 @@ import { ChessRules } from "@/base_rules"; import { randInt } from "@/utils/alea"; export class ApocalypseRules extends ChessRules { + + static get Options() { + return null; + } + static get PawnSpecs() { return Object.assign( {}, @@ -512,4 +517,5 @@ export class ApocalypseRules extends ChessRules { V.CoordsToSquare(move.end) ); } + };