diff --git a/PKHeX.Core/Saves/Substructures/Inventory/Pouch/InventoryPouch.cs b/PKHeX.Core/Saves/Substructures/Inventory/Pouch/InventoryPouch.cs index 56162a00d..aa58e6be2 100644 --- a/PKHeX.Core/Saves/Substructures/Inventory/Pouch/InventoryPouch.cs +++ b/PKHeX.Core/Saves/Substructures/Inventory/Pouch/InventoryPouch.cs @@ -280,7 +280,8 @@ public bool IsValidItemAndCount(ITrainerInfo sav, int item, bool HasNew, bool Ha return false; } - count = GetSuggestedItemCount(sav, item, count); + if (count > 0) + count = GetSuggestedItemCount(sav, item, count); return true; }