cursor freeze bug fix pt 2

This commit is contained in:
Frutescens 2024-08-02 11:30:29 -07:00
parent 88c3f44a97
commit 8d469fe3af
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ export default class RunHistoryUiHandler extends MessageUiHandler {
if (button === Button.ACTION || button === Button.CANCEL) {
if (button === Button.ACTION) {
const cursor = this.cursor + this.scrollCursor;
if (this.runs[cursor].hasData) {
if (this.runs[cursor]) {
this.scene.ui.setOverlayMode(Mode.RUN_INFO, this.runs[cursor].entryData, true);
} else {
return false;