Typos
authorBenjamin Auder <benjamin.auder@somewhere>
Sat, 20 Mar 2021 17:12:25 +0000 (18:12 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Sat, 20 Mar 2021 17:12:25 +0000 (18:12 +0100)
client/src/variants/Teleport1.js
client/src/variants/Teleport2.js

index faa503a..d9222ea 100644 (file)
@@ -1,7 +1,7 @@
 import { ChessRules, Move, PiPo } from "@/base_rules";
 import { randInt } from "@/utils/alea";
 
-export class TeleportRules extends ChessRules {
+export class Teleport1Rules extends ChessRules {
 
   hoverHighlight([x, y]) {
     // Testing move validity results in an infinite update loop.
index 4e0fe23..23bd213 100644 (file)
@@ -13,7 +13,7 @@ export class Teleport2Rules extends Teleport1Rules {
   }
 
   postPlay(move) {
-    if (move.vaish.length > 0) {
+    if (move.vanish.length > 0) {
       // Standard method:
       if (move.appear[0].p == V.KING)
         this.kingPos[move.appear[0].c] = [move.appear[0].x, move.appear[0].y];
@@ -23,11 +23,11 @@ export class Teleport2Rules extends Teleport1Rules {
 
   updateCastleFlags(move) {
     // Standard method: TODO = find a better way... (not rewriting)
-    const c = color || V.GetOppCol(this.turn);
+    const c = move.vanish[0].c;
     const firstRank = (c == "w" ? V.size.x - 1 : 0);
     const oppCol = this.turn;
     const oppFirstRank = V.size.x - 1 - firstRank;
-    if (piece == V.KING && move.appear.length > 0)
+    if (move.vanish[0].p == V.KING && move.appear.length > 0)
       this.castleFlags[c] = [V.size.y, V.size.y];
     else if (
       move.start.x == firstRank &&