X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FBaroque.js;h=ce9e66727be0e995656770bc40b7e78ed1283d83;hb=656b187886e5187e52fafe44b7dc0fb45ccd9222;hp=c394257a41c99fa31b8ac467351d514f03fc2811;hpb=8d61fc4ab7373b4a576f3f9108cdf7768ae27096;p=vchess.git diff --git a/client/src/variants/Baroque.js b/client/src/variants/Baroque.js index c394257a..ce9e6672 100644 --- a/client/src/variants/Baroque.js +++ b/client/src/variants/Baroque.js @@ -551,31 +551,31 @@ class BaroqueRules extends ChessRules let positions = range(8); // Get random squares for every piece, totally freely - let randIndex = random(8); + let randIndex = randInt(8); const bishop1Pos = positions[randIndex]; positions.splice(randIndex, 1); - randIndex = random(7); + randIndex = randInt(7); const bishop2Pos = positions[randIndex]; positions.splice(randIndex, 1); - randIndex = random(6); + randIndex = randInt(6); const knight1Pos = positions[randIndex]; positions.splice(randIndex, 1); - randIndex = random(5); + randIndex = randInt(5); const knight2Pos = positions[randIndex]; positions.splice(randIndex, 1); - randIndex = random(4); + randIndex = randInt(4); const queenPos = positions[randIndex]; positions.splice(randIndex, 1); - randIndex = random(3); + randIndex = randInt(3); const kingPos = positions[randIndex]; positions.splice(randIndex, 1); - randIndex = random(2); + randIndex = randInt(2); const rookPos = positions[randIndex]; positions.splice(randIndex, 1); const immobilizerPos = positions[0];