Fix typo
authorBenjamin Auder <benjamin.auder@somewhere>
Fri, 5 Jun 2020 20:31:01 +0000 (22:31 +0200)
committerBenjamin Auder <benjamin.auder@somewhere>
Fri, 5 Jun 2020 20:31:01 +0000 (22:31 +0200)
client/src/variants/Monochrome.js

index 50ca04b..4a24e60 100644 (file)
@@ -119,7 +119,7 @@ export class MonochromeRules extends ChessRules {
     return moves.concat(zenCaptures.filter(m => {
       const hash = m.start.x + "." + m.start.y + "." + m.end.x + "." + m.end.y;
       return !hashMoves[hash];
-    });
+    }));
   }
 
   getAllPotentialMoves() {