mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-23 15:03:24 +02:00
Update ssui to use uint8array for ivs
This commit is contained in:
parent
ccaef59660
commit
9921b57ef3
@ -2759,7 +2759,7 @@ export class StarterSelectUiHandler extends MessageUiHandler {
|
|||||||
pokerus: this.pokerusSpecies.includes(species),
|
pokerus: this.pokerusSpecies.includes(species),
|
||||||
nickname: this.starterPreferences[species.speciesId]?.nickname,
|
nickname: this.starterPreferences[species.speciesId]?.nickname,
|
||||||
teraType,
|
teraType,
|
||||||
ivs: dexEntry.ivs,
|
ivs: new Uint8Array(dexEntry.ivs),
|
||||||
};
|
};
|
||||||
|
|
||||||
this.starters.push(starter);
|
this.starters.push(starter);
|
||||||
|
Loading…
Reference in New Issue
Block a user