Fix typo
[vchess.git] / 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() {