Several small improvements + integrate options + first working draft of Cwda
[vchess.git] / client / src / variants / Discoduel.js
index ea522df..635e6db 100644 (file)
@@ -1,6 +1,11 @@
 import { ChessRules } from "@/base_rules";
 
 export class DiscoduelRules extends ChessRules {
+
+  static get Options() {
+    return null;
+  }
+
   static get PawnSpecs() {
     return Object.assign(
       {},
@@ -47,4 +52,5 @@ export class DiscoduelRules extends ChessRules {
   static get SEARCH_DEPTH() {
     return 4;
   }
+
 };