Skip to content

Commit

Permalink
Fix: Leela Zero did not work after f8c4371
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiraoka committed Nov 17, 2020
1 parent f8c4371 commit a323076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/featurecat/lizzie/analysis/Leelaz.java
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ private void parseLine(String line) {
if (params[1].startsWith("KataGo")) {
this.isKataGo = true;
Lizzie.initializeAfterVersionCheck(this);
} else if (params[1].equals("Leela")) {
} else if (params[1].equals("Leela") && params.length == 2) {
this.isLeela0110 = true;
Lizzie.initializeAfterVersionCheck(this);
}
Expand Down

0 comments on commit a323076

Please sign in to comment.