Skip to content

Commit

Permalink
Merge #677
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiraoka committed Sep 28, 2020
2 parents 9cd06f6 + 662a56c commit 2fa2446
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/featurecat/lizzie/analysis/Leelaz.java
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,12 @@ private void parseLine(String line) {
} catch (NumberFormatException nfe) {
dynamicOppKomi = Float.NaN;
}
} else if (line.startsWith("Tuning")) {
// Show GTP console during initial tuning of KataGo
// to avoid long no-response
if (!Lizzie.gtpConsole.isVisible()) {
Lizzie.frame.toggleGtpConsole();
}
} else if (line.equals("\n")) {
// End of response
} else if (line.startsWith("info")) {
Expand Down

0 comments on commit 2fa2446

Please sign in to comment.