Skip to content

Commit

Permalink
Ignore h1h1 moves when parsing PGNs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tearth committed Jan 6, 2025
1 parent 0f77886 commit b30e9eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state/text/pgn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ impl PGNLoader {
continue;
}

if token == "*" {
if token == "*" || token == "h1h1" {
break;
}

Expand Down

0 comments on commit b30e9eb

Please sign in to comment.