Skip to content

Commit 778b665

Browse files
committed
Fix cur_review_move updating
1 parent 70f6f17 commit 778b665

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GoEngine.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ export class GoEngine extends EventEmitter<Events> {
381381
return;
382382
}
383383
this._cur_review_move = cur_review_move;
384-
this.emit("cur_review_move", this.cur_move);
384+
this.emit("cur_review_move", this.cur_review_move);
385385
}
386386

387387
private _last_official_move: MoveTree;

0 commit comments

Comments
 (0)