Almost added TitanChess + EvolutionChess
[vchess.git] / client / src / variants / Hiddenqueen.js
index b180c6f..0cf0967 100644 (file)
@@ -3,6 +3,7 @@ import { ArrayFun } from "@/utils/array";
 import { randInt } from "@/utils/alea";
 
 export class HiddenqueenRules extends ChessRules {
+
   // Analyse in Hiddenqueen mode makes no sense
   static get CanAnalyze() {
     return false;
@@ -180,6 +181,11 @@ export class HiddenqueenRules extends ChessRules {
       this.kingPos[oppCol] = [move.vanish[1].x, move.vanish[1].y];
   }
 
+  underCheck(color) {
+    if (this.kingPos[color][0] < 0) return false;
+    return super.underCheck(color);
+  }
+
   getCurrentScore() {
     const color = this.turn;
     if (this.kingPos[color][0] < 0)
@@ -225,4 +231,5 @@ export class HiddenqueenRules extends ChessRules {
     else notation = finalSquare;
     return notation;
   }
+
 };