Closed omarpalacios closed 3 years ago
The line List<Move> moves = board.legalModes(); should be: ... legalMoves() I believe.
List<Move> moves = board.legalModes();
thank you @omarpalacios
I have opened PR #59 that fixes this and other issues with the readme.
Fixed release 1.3.0
The line
List<Move> moves = board.legalModes();
should be: ... legalMoves() I believe.