From ca139cf7e491f08f3f0fa13a385f678dcb3b83bf Mon Sep 17 00:00:00 2001 From: Kaphotics Date: Thu, 23 Jun 2016 21:55:14 -0700 Subject: [PATCH] Add gen4 current box --- Saves/SAV4.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Saves/SAV4.cs b/Saves/SAV4.cs index bcdf79d86..1e9fe9277 100644 --- a/Saves/SAV4.cs +++ b/Saves/SAV4.cs @@ -531,7 +531,7 @@ public int Y public override int SecondsToFame { get { return BitConverter.ToInt32(Data, AdventureInfo + 0x3C); } set { BitConverter.GetBytes(value).CopyTo(Data, AdventureInfo + 0x3C); } } // Storage - public int UnlockedBoxes + public override int CurrentBox { get { return Data[Box - 4]; } set { Data[Box - 4] = (byte)value; }