From 6813103a75fecb750f8d0ae77f699ed0cb11178c Mon Sep 17 00:00:00 2001
From: Benjamin Auder <benjamin.auder@somewhere>
Date: Wed, 8 Apr 2020 19:37:03 +0200
Subject: [PATCH] Fix typo in Sittuyin variant

---
 client/src/variants/Sittuyin.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client/src/variants/Sittuyin.js b/client/src/variants/Sittuyin.js
index 322439df..ccdd7b23 100644
--- a/client/src/variants/Sittuyin.js
+++ b/client/src/variants/Sittuyin.js
@@ -316,7 +316,7 @@ export class SittuyinRules extends ChessRules {
       const initSquare =
         V.CoordsToSquare({ x: move.vanish[0].x, y: move.vanish[0].y })
       const destSquare =
-        V.CoordsToSquare({ x: move.vanish[0].x, y: move.vanish[0].y })
+        V.CoordsToSquare({ x: move.appear[0].x, y: move.appear[0].y })
       const prefix = (initSquare != destSquare ? initSquare : "");
       return prefix + destSquare + "=Q";
     }
-- 
2.44.0