X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FAllmate1.js;h=1149ea9189b4392a5178839a9728a5b92da25752;hb=afde76668963c4d0d96002fcae2ebabb9acf81e4;hp=bf8f1be9a6109c93fb7e5d694a85e8ec5538d8f2;hpb=9618937e4a56277f35cbd2dd22078c61bb3f47d4;p=vchess.git diff --git a/client/src/variants/Allmate1.js b/client/src/variants/Allmate1.js index bf8f1be9..1149ea91 100644 --- a/client/src/variants/Allmate1.js +++ b/client/src/variants/Allmate1.js @@ -10,8 +10,8 @@ export const VariantRules = class Allmate1Rules extends ChessRules { return []; } - static GenRandInitFen() { - return ChessRules.GenRandInitFen().replace(/ -$/, ""); + static GenRandInitFen(randomness) { + return ChessRules.GenRandInitFen(randomness).replace(/ -$/, ""); } getPotentialMovesFrom([x, y]) { @@ -291,7 +291,7 @@ export const VariantRules = class Allmate1Rules extends ChessRules { let notation = super.getNotation(move); // Add a capture mark (not describing what is captured...): if (move.vanish.length > 1 && move.appear.length == 1) { - if (notation.match(/^[a-h]x/)) + if (!!(notation.match(/^[a-h]x/))) // Pawn capture: remove initial "b" in bxc4 for example notation = notation.substr(1); notation = notation.replace("x","") + "X";