Fix typo
[vchess.git] / client / src / variants / Crazyhouse.js
index ff705c7..0a237c7 100644 (file)
@@ -29,7 +29,7 @@ export const VariantRules = class CrazyhouseRules extends ChessRules {
   }
 
   getEpSquare(moveOrSquare) {
-    if (typeof moveOrSquare !== "object" || move.vanish.length > 0)
+    if (typeof moveOrSquare !== "object" || moveOrSquare.vanish.length > 0)
       return super.getEpSquare(moveOrSquare);
     // Landing move: no en-passant
     return undefined;