From 49dc04f91386f8af97994b9f8734a0cde9b3d4b0 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Mon, 6 Apr 2020 13:40:04 +0200 Subject: [PATCH] Add small debug trace to try to understand why moves received while analyze aren't shown --- client/src/components/BaseGame.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue index ccf9d734..dc15413f 100644 --- a/client/src/components/BaseGame.vue +++ b/client/src/components/BaseGame.vue @@ -522,6 +522,9 @@ export default { }; const afterMove = (smove, initurn) => { if (this.vr.turn != initurn) { + +console.log(smove); + // Turn has changed: move is complete if (!smove.fen) // NOTE: only FEN of last sub-move is required (=> setting it here) -- 2.44.0