basil00/Fathom

Separator between various kinds of drawing moves

niklasf opened this issue · 2 comments

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"]

Thanks for the report, fixed.

Excellent. Thanks!