Almost added TitanChess + EvolutionChess
[vchess.git] / client / src / variants / Upsidedown.js
index 2076824..43f3825 100644 (file)
@@ -3,11 +3,8 @@ import { randInt } from "@/utils/alea";
 import { ArrayFun } from "@/utils/array";
 
 export class UpsidedownRules extends ChessRules {
-  static get HasFlags() {
-    return false;
-  }
 
-  static get HasCastle() {
+  static get HasFlags() {
     return false;
   }
 
@@ -73,11 +70,13 @@ export class UpsidedownRules extends ChessRules {
       pieces["w"].join("").toUpperCase() +
       "/PPPPPPPP/8/8/8/8/pppppppp/" +
       pieces["b"].join("") +
+      // No castle, no en-passant:
       " w 0"
-    ); //no castle, no en-passant
+    );
   }
 
   static get SEARCH_DEPTH() {
     return 2;
   }
+
 };