Fix space in algebraic notation

This commit is contained in:
ekzyis 2024-09-26 18:05:13 +02:00
parent ee4e1f0edf
commit fe82dee3bb
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ func (b *Board) AlgebraicNotation() string {
var text string
for i, m := range b.Moves {
if i%2 == 0 {
text += fmt.Sprintf("%d. %s", i/2+1, m)
text += fmt.Sprintf("%d.%s", i/2+1, m)
} else {
text += fmt.Sprintf(" %s ", m)
}