From 5c33245221a98326fecc4a93d1cdcc694bc694d9 Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 4 Feb 2022 22:28:07 -0800 Subject: [PATCH] Update MyItem8a.cs --- PKHeX.Core/Saves/Substructures/Gen8/LA/MyItem8a.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Saves/Substructures/Gen8/LA/MyItem8a.cs b/PKHeX.Core/Saves/Substructures/Gen8/LA/MyItem8a.cs index 39ff92a08..3f89036ad 100644 --- a/PKHeX.Core/Saves/Substructures/Gen8/LA/MyItem8a.cs +++ b/PKHeX.Core/Saves/Substructures/Gen8/LA/MyItem8a.cs @@ -19,7 +19,7 @@ public override IReadOnlyList Inventory { var access = ((SAV8LA)SAV).Accessor; var satchel = (uint)access.GetBlock(SaveBlockAccessor8LA.KSatchelUpgrades).GetValue(); - var regularSize = (int)Math.Min(675, satchel); + var regularSize = (int)Math.Min(675, satchel + 20); var regular = new InventoryPouch8a(InventoryType.Items, Legal.Pouch_Items_LA , 999, regularSize); var key = new InventoryPouch8a(InventoryType.KeyItems, Legal.Pouch_Key_LA , 1, 100);