From 58327965b8edcc3d1617058283a5111edde1c39b Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Fri, 12 Mar 2021 18:00:28 +0100 Subject: [PATCH] [Titan] Fix moves notation --- client/src/variants/Titan.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/variants/Titan.js b/client/src/variants/Titan.js index f8d626eb..53420e83 100644 --- a/client/src/variants/Titan.js +++ b/client/src/variants/Titan.js @@ -257,6 +257,7 @@ export class TitanRules extends ChessRules { if ( V.AUGMENTED_PIECES.includes(move.vanish[0].p) || ( + move.appear.length >= 2 && move.vanish.length >= 2 && V.AUGMENTED_PIECES.includes(move.vanish[1].p) ) -- 2.44.0