Several small improvements + integrate options + first working draft of Cwda
[vchess.git] / client / src / variants / Racingkings.js
index 1145748..745843b 100644 (file)
@@ -1,6 +1,11 @@
 import { ChessRules } from "@/base_rules";
 
 export class RacingkingsRules extends ChessRules {
+
+  static get Options() {
+    return null;
+  }
+
   static get HasFlags() {
     return false;
   }
@@ -61,4 +66,5 @@ export class RacingkingsRules extends ChessRules {
     // Ponder with king position:
     return evaluation/5 + this.kingPos["b"][0] - this.kingPos["w"][0];
   }
+
 };