Add Colorbound Clobberers (R. Betza)
[vchess.git] / client / src / variants / Losers.js
index daabbab..d82e57d 100644 (file)
@@ -8,7 +8,7 @@ export class LosersRules extends ChessRules {
     return moves.filter(m => m.vanish.length == 2 && m.appear.length == 1);
   }
 
-       // Stop at the first capture found (if any)
+  // Stop at the first capture found (if any)
   atLeastOneCapture() {
     const color = this.turn;
     const oppCol = V.GetOppCol(color);