X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FAmbiguous.js;h=b478887db1afa5ae87f7fe9264ac0cd523e51b01;hb=e9437f4b2ee9a40013ee514562f39a36d551faab;hp=9e096a721fbb444cdfee1dfe04a57c127af32739;hpb=0e5fe2f0fa3a5d08e4ecfb71d106f6b33790188c;p=vchess.git diff --git a/client/src/variants/Ambiguous.js b/client/src/variants/Ambiguous.js index 9e096a72..b478887d 100644 --- a/client/src/variants/Ambiguous.js +++ b/client/src/variants/Ambiguous.js @@ -1,7 +1,9 @@ import { ChessRules } from "@/base_rules"; import { randInt, shuffle } from "@/utils/alea"; +import { ArrayFun } from "@/utils/array"; export class AmbiguousRules extends ChessRules { + static get HasFlags() { return false; } @@ -248,8 +250,10 @@ export class AmbiguousRules extends ChessRules { if (rem2 == positions[1] % 2) { // Fix bishops (on different colors) for (let i=2; i<8; i++) { - if (positions[i] % 2 != rem2) + if (positions[i] % 2 != rem2) { [positions[1], positions[i]] = [positions[i], positions[1]]; + break; + } } } for (let i = 0; i < 8; i++) pieces[c][positions[i]] = composition[i]; @@ -291,4 +295,5 @@ export class AmbiguousRules extends ChessRules { else move.vanish[1].p = V.TARGET_CODE[move.vanish[1].p]; return notation; } + };