X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FComputerGame.vue;h=5fe29e6f63495afb923bc08e54af1561cbd74a28;hp=ce895ee1d0df231576ceb6a6214936900e28ff0e;hb=b1e46b33d78bdf144a5603f82a6907901763abb9;hpb=4db4c67c0ce025d2f9f151d70e81128a3b26b5c5 diff --git a/client/src/components/ComputerGame.vue b/client/src/components/ComputerGame.vue index ce895ee1..5fe29e6f 100644 --- a/client/src/components/ComputerGame.vue +++ b/client/src/components/ComputerGame.vue @@ -66,7 +66,7 @@ export default { CompgameStorage.add(game); } if (this.gameInfo.mode == "versus" && !game.mycolor) - game.mycolor = Math.random() < 0.5 ? "w" : "b"; + game.mycolor = (Math.random() < 0.5 ? "w" : "b"); this.compWorker.postMessage(["init", game.fen]); this.vr = new V(game.fen); game.players = [{ name: "Myself" }, { name: "Computer" }]; @@ -74,6 +74,7 @@ export default { game.score = "*"; //finished games are removed this.currentUrl = document.location.href; //to avoid playing outside page this.game = game; + this.$refs["basegame"].re_setVariables(game); this.compWorker.postMessage(["init", game.fen]); if (this.gameInfo.mode == "auto" || game.mycolor != this.vr.turn) this.playComputerMove();