[P1] Fix party UI crash from unsanitized `lastCursor` pointing to empty Pokemon slot (#4672)
This commit is contained in:
parent
72c08e5cfd
commit
1907824670
|
@ -671,6 +671,9 @@ export default class PartyUiHandler extends MessageUiHandler {
|
|||
} else if (this.cursor === 6) {
|
||||
this.partyCancelButton.select();
|
||||
}
|
||||
if (this.lastCursor < 6 && this.lastCursor >= party.length) {
|
||||
this.lastCursor = party.length - 1;
|
||||
}
|
||||
|
||||
for (const p in party) {
|
||||
const slotIndex = parseInt(p);
|
||||
|
|
Loading…
Reference in New Issue