Update ssui to use uint8array for ivs

This commit is contained in:
Sirz Benjie 2025-09-22 10:43:26 -05:00
parent ccaef59660
commit 9921b57ef3
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -2759,7 +2759,7 @@ export class StarterSelectUiHandler extends MessageUiHandler {
pokerus: this.pokerusSpecies.includes(species),
nickname: this.starterPreferences[species.speciesId]?.nickname,
teraType,
ivs: dexEntry.ivs,
ivs: new Uint8Array(dexEntry.ivs),
};
this.starters.push(starter);