Some fixes
[vchess.git] / client / src / variants / Extinction.js
index 746809f..8c97068 100644 (file)
@@ -10,8 +10,7 @@ export class ExtinctionRules extends ChessRules {
   }
 
   static IsGoodPosition(position) {
-    if (!ChessRules.IsGoodPosition(position))
-      return false;
+    if (!ChessRules.IsGoodPosition(position)) return false;
     // Also check that each piece type is present
     const rows = position.split("/");
     let pieces = {};
@@ -21,8 +20,7 @@ export class ExtinctionRules extends ChessRules {
           pieces[row[i]] = true;
       }
     }
-    if (Object.keys(pieces).length != 12)
-      return false;
+    if (Object.keys(pieces).length != 12) return false;
     return true;
   }