X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FProblems.vue;h=2d6ac6924a975c32d9189461d8f5c0beff7b1076;hp=30d3356d11ccb407808101fe35b4d6b61c930200;hb=e71161fbfffe53b0f4b174e0467cdd98cc70b7b0;hpb=1c5bfdf23707e893735f185786e9774b2270ace1 diff --git a/client/src/views/Problems.vue b/client/src/views/Problems.vue index 30d3356d..2d6ac692 100644 --- a/client/src/views/Problems.vue +++ b/client/src/views/Problems.vue @@ -99,7 +99,6 @@ main BaseGame( v-if="showOne" :game="game" - :vr="vr" ) @@ -139,7 +138,6 @@ export default { onlyMines: false, showOne: false, infoMsg: "", - vr: null, //"variant rules" object initialized from FEN game: { players: [{ name: "Problem" }, { name: "Problem" }], mode: "analyze" @@ -280,9 +278,8 @@ export default { showProblem: function(p) { this.loadVariant(p.vid, () => { // The FEN is already checked at this stage: - this.vr = new V(p.fen); this.game.vname = p.vname; - this.game.mycolor = this.vr.turn; //diagram orientation + this.game.mycolor = V.ParseFen(p.fen).turn; //diagram orientation this.game.fen = p.fen; this.$set(this.game, "fenStart", p.fen); this.copyProblem(p, this.curproblem);