Some fixes
authorBenjamin Auder <benjamin.auder@somewhere>
Wed, 20 Jan 2021 00:38:07 +0000 (01:38 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Wed, 20 Jan 2021 00:38:07 +0000 (01:38 +0100)
client/src/translations/about/en.pug
client/src/translations/about/es.pug
client/src/translations/about/fr.pug
client/src/variants/Fugue.js
client/src/variants/Yote.js

index 50c3895..f1e0c93 100644 (file)
@@ -46,6 +46,7 @@ h3 Related links
   a(href="https://greenchess.net/") greenchess.net
   a(href="http://pychess-variants.herokuapp.com/") pychess-variants.com
   a(href="https://glukkazan.github.io/") Dagaz demo + server
+  a(href="https://mindsports.nl/index.php") mindsports.nl
   a(href="https://www.jocly.com/#/games") jocly.com
   a(href="http://www.iggamecenter.com/") iggamecenter.com
   a(href="https://musketeerchess.net/home/index.html") musketeerchess.net
index 2d23610..bcc6ff0 100644 (file)
@@ -45,6 +45,7 @@ h3 Enlaces relacionados
   a(href="https://greenchess.net/") greenchess.net
   a(href="http://pychess-variants.herokuapp.com/") pychess-variants.com
   a(href="https://glukkazan.github.io/") Dagaz demo + servidor
+  a(href="https://mindsports.nl/index.php") mindsports.nl
   a(href="https://www.jocly.com/#/games") jocly.com
   a(href="http://www.iggamecenter.com/") iggamecenter.com
   a(href="https://musketeerchess.net/home/index.html") musketeerchess.net
index fe74c76..537a79b 100644 (file)
@@ -46,6 +46,7 @@ h3 Liens connexes
   a(href="https://greenchess.net/") greenchess.net
   a(href="http://pychess-variants.herokuapp.com/") pychess-variants.com
   a(href="https://glukkazan.github.io/") Dagaz demo + serveur
+  a(href="https://mindsports.nl/index.php") mindsports.nl
   a(href="https://www.jocly.com/#/games") jocly.com
   a(href="http://www.iggamecenter.com/") iggamecenter.com
   a(href="https://musketeerchess.net/home/index.html") musketeerchess.net
index 12002fa..c29324a 100644 (file)
@@ -37,6 +37,7 @@ export class FugueRules extends ChessRules {
 
   static get PIECES() {
     return [
+      V.PAWN,
       V.QUEEN,
       V.KING,
       V.IMMOBILIZER,
index d836bbd..4e53fe9 100644 (file)
@@ -242,7 +242,7 @@ export class YoteRules extends ChessRules {
       const mv = this.doClick([x, y]);
       return (!!mv ? [mv] : []);
     }
-    if (x >= V.size.x) return this.getReserveMoves([x, y]);
+    if (x >= V.size.x) return this.getReserveMoves(x);
     return this.getPotentialPawnMoves([x, y]);
   }