diff --git a/PKHeX.Core/Saves/Substructures/Inventory/InventoryPouch3.cs b/PKHeX.Core/Saves/Substructures/Inventory/InventoryPouch3.cs index d69618ee4..6a0165dd6 100644 --- a/PKHeX.Core/Saves/Substructures/Inventory/InventoryPouch3.cs +++ b/PKHeX.Core/Saves/Substructures/Inventory/InventoryPouch3.cs @@ -22,7 +22,7 @@ public override void GetPouch(ReadOnlySpan data) items[i] = new InventoryItem { Index = ReadUInt16LittleEndian(entry), - Count = ReadUInt16LittleEndian(entry[..2]) ^ (ushort) SecurityKey, + Count = ReadUInt16LittleEndian(entry[2..]) ^ (ushort) SecurityKey, }; } Items = items;