X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FBaseGame.vue;h=41ab55dc7394424e691fd5988ba2a4c59f4f6260;hp=e880de5f4abde0246dc8bc1cca8e3e11d880fc81;hb=697ee5803b6110b98de0e1097ce6affc712134c4;hpb=4f8871051c030acd51172b73cd20aedce687c2a8 diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue index e880de5f..41ab55dc 100644 --- a/client/src/components/BaseGame.vue +++ b/client/src/components/BaseGame.vue @@ -100,6 +100,12 @@ export default { vr_tmp.play(move); move.fen = vr_tmp.getFen(); }); + if (this.game.fenStart.indexOf(" b ") >= 0 || + (this.moves.length > 0 && this.moves[0].color == "b")) + { + // 'end' is required for Board component to check lastMove for e.p. + this.moves.unshift({color: "w", notation: "...", end: {x:-1,y:-1}}); + } const L = this.moves.length; this.cursor = L-1; this.lastMove = (L > 0 ? this.moves[L-1] : null);