Skip to content

Commit

Permalink
Fix cur_review_move updating
Browse files Browse the repository at this point in the history
  • Loading branch information
anoek committed Sep 8, 2023
1 parent 70f6f17 commit 778b665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GoEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ export class GoEngine extends EventEmitter<Events> {
return;
}
this._cur_review_move = cur_review_move;
this.emit("cur_review_move", this.cur_move);
this.emit("cur_review_move", this.cur_review_move);
}

private _last_official_move: MoveTree;
Expand Down

0 comments on commit 778b665

Please sign in to comment.