Attempt to fix SYnchrone2 getCurrentScore()
authorBenjamin Auder <benjamin.auder@somewhere>
Thu, 4 Mar 2021 21:06:47 +0000 (22:06 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Thu, 4 Mar 2021 21:06:47 +0000 (22:06 +0100)
client/src/variants/Synchrone2.js

index af77a8c..396a0c6 100644 (file)
@@ -223,12 +223,15 @@ export class Synchrone2Rules extends Synchrone1Rules {
   }
 
   getCurrentScore() {
-    if (this.movesCount % 4 != 0)
-      // Turn (2 x [white + black]) not over yet
+    if (this.movesCount % 2 != 0)
+      // Turn [white + black] not over yet
       return "*";
     // Was a king captured?
     if (this.kingPos['w'][0] < 0) return "0-1";
     if (this.kingPos['b'][0] < 0) return "1-0";
+    if (this.movesCount % 4 == 2)
+      // Turn (2 x [white + black]) not over yet
+      return "*";
     const whiteCanMove = this.atLeastOneMove('w');
     const blackCanMove = this.atLeastOneMove('b');
     if (whiteCanMove && blackCanMove) return "*";