Better fix to remove corrupted games vs computer
[vchess.git] / client / src / components / ComputerGame.vue
index 72e4f5e..9cd5f9b 100644 (file)
@@ -61,7 +61,7 @@ export default {
   methods: {
     launchGame: function(game) {
       this.compWorker.postMessage(["scripts", this.gameInfo.vname]);
-      if (!game || !V.IsGoodFen(game.fen)) {
+      if (!game) {
         game = {
           vname: this.gameInfo.vname,
           fenStart: V.GenRandInitFen(this.st.settings.randomness),