From cea47507df9b4da3a6820c07481997f300c94a36 Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Mon, 22 Sep 2025 10:35:56 -0500 Subject: [PATCH] Update type of ivs in save-data.ts --- src/@types/save-data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@types/save-data.ts b/src/@types/save-data.ts index ae359c20949..c737f5097ad 100644 --- a/src/@types/save-data.ts +++ b/src/@types/save-data.ts @@ -123,7 +123,7 @@ export interface Starter { pokerus: boolean; nickname?: string; teraType?: PokemonType; - ivs: number[]; + ivs: Uint8Array; } export type RunHistoryData = Record;