diff --git a/modules/fishnet/src/main/Analyser.scala b/modules/fishnet/src/main/Analyser.scala index 68d5d40212..c9e0f98cc8 100644 --- a/modules/fishnet/src/main/Analyser.scala +++ b/modules/fishnet/src/main/Analyser.scala @@ -18,7 +18,7 @@ final class Analyser( system: akka.actor.ActorSystem ) { - val maxPlies = 200 + val maxPlies = 300 private val workQueue = new lila.hub.AsyncActorSequencer(maxSize = 256, timeout = 5 seconds, "fishnetAnalyser") diff --git a/ui/analyse/src/ctrl.ts b/ui/analyse/src/ctrl.ts index fc220cdb85..89e0d76c72 100644 --- a/ui/analyse/src/ctrl.ts +++ b/ui/analyse/src/ctrl.ts @@ -795,7 +795,7 @@ export default class AnalyseCtrl { if (!this.showComputer()) this.tree.removeComputerVariations(); this.data.analysis = data.analysis; if (data.analysis) - data.analysis.partial = !!treeOps.findInMainline(data.tree, n => !n.eval && !!n.children.length && n.ply <= 200); + data.analysis.partial = !!treeOps.findInMainline(data.tree, n => !n.eval && !!n.children.length && n.ply <= 300); if (data.division) this.data.game.division = data.division; if (this.retro) this.retro.onMergeAnalysisData(); if (this.study) this.study.serverEval.onMergeAnalysisData();