X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FSuicide.js;h=13aaa6bba4bda2543da804b91fed538dc41e14b9;hp=e71e3a2e250c954737fbf8297bf1fed6d39a9249;hb=5d74fceaa93054b410f469fe6ed4d5a4609bf98d;hpb=5c50b18ebe03fd485ab1e5301a37bec8b14a0ff8 diff --git a/client/src/variants/Suicide.js b/client/src/variants/Suicide.js index e71e3a2e..13aaa6bb 100644 --- a/client/src/variants/Suicide.js +++ b/client/src/variants/Suicide.js @@ -153,8 +153,10 @@ export class SuicideRules 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];