diff --git a/PKHeX/Saves/SAV5.cs b/PKHeX/Saves/SAV5.cs index ba2120c35..d8e89dde9 100644 --- a/PKHeX/Saves/SAV5.cs +++ b/PKHeX/Saves/SAV5.cs @@ -425,8 +425,8 @@ public override InventoryPouch[] Inventory // Storage public override int PartyCount { - get { return Data[Party]; } - protected set { Data[Party] = (byte)value; } + get { return Data[Party + 4]; } + protected set { Data[Party + 4] = (byte)value; } } public override int getBoxOffset(int box) {