X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=utils%2FsetupPieces.js;fp=utils%2FsetupPieces.js;h=94bbc73aaca8e100f762075c9b252efdd5c382f1;hb=52718c94d69b40e79f9ba4fd4ff70376bbf8a774;hp=2c8cceee81f5edd4ea8e6fc9c0d2ec7df24861f3;hpb=a46d74c085e79e62716e3fca8a10a22d2ca10056;p=xogo.git diff --git a/utils/setupPieces.js b/utils/setupPieces.js index 2c8ccee..94bbc73 100644 --- a/utils/setupPieces.js +++ b/utils/setupPieces.js @@ -38,17 +38,19 @@ export const FenUtil = { }); } if (o.between) { - // Locate p1. If appearing first, exchange with first p2. - // If appearing last, exchange with last p2. - const p1 = res.indexOf(o.between["p1"]); - const firstP2 = res.indexOf(o.between["p2"]), - lastP2 = res.lastIndexOf(o.between["p2"]); - if (p1 < firstP2 || p1 > lastP2) { - res[p1] = o.between["p2"]; - if (p1 < firstP2) - res[firstP2] = o.between["p1"]; - else //p1 > lastP2 - res[lastP2] = o.between["p1"]; + o.between.forEach(b => { + // Locate p1. If appearing first, exchange with first p2. + // If appearing last, exchange with last p2. + const p1 = res.indexOf(b["p1"]); + const firstP2 = res.indexOf(b["p2"]), + lastP2 = res.lastIndexOf(b["p2"]); + if (p1 < firstP2 || p1 > lastP2) { + res[p1] = b["p2"]; + if (p1 < firstP2) + res[firstP2] = b["p1"]; + else //p1 > lastP2 + res[lastP2] = b["p1"]; + } } } }