diff --git a/PKHeX.Core/Saves/Substructures/Inventory/Pouch/InventoryPouch.cs b/PKHeX.Core/Saves/Substructures/Inventory/Pouch/InventoryPouch.cs index 581fc61bd..82fd298ab 100644 --- a/PKHeX.Core/Saves/Substructures/Inventory/Pouch/InventoryPouch.cs +++ b/PKHeX.Core/Saves/Substructures/Inventory/Pouch/InventoryPouch.cs @@ -280,7 +280,7 @@ public bool IsValidItemAndCount(ITrainerInfo sav, int item, bool HasNew, bool Ha return false; } - if (count > 0) + if (count > 0 && item is not ColorfulScrew9a.ColorfulScrewItemIndex) // need to rewrite this later count = GetSuggestedItemCount(sav, item, count); return true; }