From 4c377d75cfc6e178ca5e82e58590d11ea7faf0dd Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 16 Nov 2025 11:58:13 -0600 Subject: [PATCH] Allow colorful screw quantity to save Really need to refactor the entire Inventory handling because it isn't very flexible --- .../Saves/Substructures/Inventory/Pouch/InventoryPouch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }