Update part-timer-encounter.test.ts

This commit is contained in:
Sirz Benjie 2025-09-22 10:36:49 -05:00
parent cea47507df
commit fd4c037959
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -168,7 +168,7 @@ describe("Part-Timer - Mystery Encounter", () => {
// Override party levels to 50 so stats can be fully reflective
scene.getPlayerParty().forEach(p => {
p.level = 50;
p.ivs = [0, 0, 0, 0, 0, 0];
p.ivs = Uint8Array.of(0, 0, 0, 0, 0, 0);
p.calculateStats();
});
await runMysteryEncounterToEnd(game, 2, { pokemonNo: 3 });