From 81b316f4c9ec6bab177bab0a4f26d28ba9460bc2 Mon Sep 17 00:00:00 2001 From: Frederico Santos Date: Mon, 3 Jun 2024 23:09:47 +0100 Subject: [PATCH] Refactor savedata struct to include EggPity and UnlockPity (#27) --- 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"` }