Separator between various kinds of drawing moves
niklasf opened this issue · 2 comments
niklasf commented
A separator is missing between the various kinds of drawing moves.
print_moves(pos, results, TB_CURSED_WIN);
print_moves(pos, results, TB_DRAW);
print_moves(pos, results, TB_BLESSED_LOSS);
Example FEN 8/2P5/KP6/8/8/8/8/2qk4 w - - 0 1
. Expecting:
[DrawingMoves "Kb7, Kb5, Ka7"]
Actual output:
[DrawingMoves "Kb7Kb5, Ka7"]
basil00 commented
Thanks for the report, fixed.
niklasf commented
Excellent. Thanks!