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) {
|
for (const move of this._moves) {
|
||||||
if (move.phantom) {
|
if (move.phantom) {
|
||||||
result += SHY + '*';
|
result += SHY + '*';
|
||||||
} else {
|
} else if (!move.resign) {
|
||||||
if (n > 0 || move.side === DARK) {
|
if (n > 0 || move.side === DARK) {
|
||||||
result += ' ';
|
result += ' ';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue