Attempt to clarify installation instructions a little
[vchess.git] / client / src / variants / Alice.js
index 61fcd01..e33cbdd 100644 (file)
@@ -5,6 +5,7 @@ import { ArrayFun } from "@/utils/array";
 // TODO? atLeastOneMove() would be more efficient if rewritten here
 // (less sideBoard computations)
 export class AliceRules extends ChessRules {
+
   static get ALICE_PIECES() {
     return {
       s: "p",
@@ -168,7 +169,8 @@ export class AliceRules extends ChessRules {
             return false;
           }
         }
-      } else if (this.board[m.end.x][m.end.y] != V.EMPTY) {
+      }
+      else if (this.board[m.end.x][m.end.y] != V.EMPTY) {
         // Attempt to capture
         const piece = this.getPiece(m.end.x, m.end.y);
         if (
@@ -346,7 +348,7 @@ export class AliceRules extends ChessRules {
   }
 
   getNotation(move) {
-    if (move.appear.length == 2 && move.appear[0].p == V.KING) {
+    if (move.appear.length == 2) {
       if (move.end.y < move.start.y) return "0-0-0";
       return "0-0";
     }
@@ -366,4 +368,5 @@ export class AliceRules extends ChessRules {
       notation += "=" + move.appear[0].p.toUpperCase();
     return notation;
   }
+
 };