omit move number when last move is a resignation
This commit is contained in:
parent
7e0cdfbdc2
commit
dca6754b65
|
|
@ -688,7 +688,7 @@ class Game {
|
|||
for (const move of this._moves) {
|
||||
if (move.phantom) {
|
||||
result += SHY + '*';
|
||||
} else {
|
||||
} else if (!move.resign) {
|
||||
if (n > 0 || move.side === DARK) {
|
||||
result += ' ';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue