From 58c1687df7efd9375b270d148319623285412aee Mon Sep 17 00:00:00 2001 From: Frederico Santos Date: Mon, 3 Jun 2024 22:38:45 +0100 Subject: [PATCH] Refactor savedata struct to include EggPity and UnlockPity --- defs/savedata.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/defs/savedata.go b/defs/savedata.go index 55ed31c..1d63603 100644 --- a/defs/savedata.go +++ b/defs/savedata.go @@ -33,6 +33,8 @@ type SystemSaveData struct { VoucherUnlocks VoucherUnlocks `json:"voucherUnlocks"` VoucherCounts VoucherCounts `json:"voucherCounts"` Eggs []EggData `json:"eggs"` + EggPity []int `json:"eggPity"` + UnlockPity []int `json:"unlockPity"` GameVersion string `json:"gameVersion"` Timestamp int `json:"timestamp"` }