diff --git a/PKHeX/Subforms/Save Editors/SAV_Inventory.cs b/PKHeX/Subforms/Save Editors/SAV_Inventory.cs index 4d5272cf2..014fd3137 100644 --- a/PKHeX/Subforms/Save Editors/SAV_Inventory.cs +++ b/PKHeX/Subforms/Save Editors/SAV_Inventory.cs @@ -212,7 +212,12 @@ private void setBag(DataGridView dgv, InventoryPouch pouch) itemcnt = ushort.MaxValue; } else if (itemcnt > pouch.MaxCount) - itemcnt = pouch.MaxCount; // Cap at pouch maximum + { + if (itemindex == 797 && itemcnt >= 2) // Edge case when for some reason the item count for Z-Ring was 2 in an unedited save and set 1 after using PKHex + itemcnt = 2; + else + itemcnt = pouch.MaxCount; // Cap at pouch maximum + } else if (itemcnt <= 0) continue; // ignore item