[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) {
|
} else if (this.cursor === 6) {
|
||||||
this.partyCancelButton.select();
|
this.partyCancelButton.select();
|
||||||
}
|
}
|
||||||
|
if (this.lastCursor < 6 && this.lastCursor >= party.length) {
|
||||||
|
this.lastCursor = party.length - 1;
|
||||||
|
}
|
||||||
|
|
||||||
for (const p in party) {
|
for (const p in party) {
|
||||||
const slotIndex = parseInt(p);
|
const slotIndex = parseInt(p);
|
||||||
|
|
Loading…
Reference in New Issue