Another typo...
[vchess.git] / client / src / variants / Monochrome.js
index 50ca04b..954a050 100644 (file)
@@ -115,11 +115,11 @@ export class MonochromeRules extends ChessRules {
           m.start.x + "." + m.start.y + "." + m.end.x + "." + m.end.y;
         hashMoves[hash] = true;
       }
-    }
+    });
     return moves.concat(zenCaptures.filter(m => {
       const hash = m.start.x + "." + m.start.y + "." + m.end.x + "." + m.end.y;
       return !hashMoves[hash];
-    });
+    }));
   }
 
   getAllPotentialMoves() {