X-Git-Url: https://git.auder.net/variants/Bario/complete_rules.html?a=blobdiff_plain;ds=sidebyside;f=client%2Fsrc%2Fvariants%2FLosers.js;h=4bc6a611befbad99376cb08ffa6e17dbed088495;hb=8c1ec21009634290a177ed5a0f093d900a698454;hp=d752f984bc4f5375ba3b23eba44f7694d812c979;hpb=6b7b2cf720e6255e4da0dc34fee363c456346a58;p=vchess.git diff --git a/client/src/variants/Losers.js b/client/src/variants/Losers.js index d752f984..4bc6a611 100644 --- a/client/src/variants/Losers.js +++ b/client/src/variants/Losers.js @@ -2,7 +2,7 @@ import { ChessRules } from "@/base_rules"; import { ArrayFun } from "@/utils/array"; import { randInt } from "@/utils/alea"; -export const VariantRules = class LosersRules extends ChessRules { +export class LosersRules extends ChessRules { // Trim all non-capturing moves static KeepCaptures(moves) { return moves.filter(m => m.vanish.length == 2); @@ -38,7 +38,8 @@ export const VariantRules = class LosersRules extends ChessRules { getAllValidMoves() { const moves = super.getAllValidMoves(); - if (moves.some(m => m.vanish.length == 2)) return V.KeepCaptures(moves); + if (moves.some(m => m.vanish.length == 2 && m.appear.length == 1)) + return V.KeepCaptures(moves); return moves; }