diff --git a/Fika.Core/UI/Patches/ItemContext_Patch.cs b/Fika.Core/UI/Patches/ItemContext_Patch.cs index 2af2a52d..e0aff788 100644 --- a/Fika.Core/UI/Patches/ItemContext_Patch.cs +++ b/Fika.Core/UI/Patches/ItemContext_Patch.cs @@ -40,6 +40,14 @@ private static void Prefix(ItemInfoInteractionsAbstractClass co return; } + // Save as variable in case we need to add more checks later... + MenuUI menuUI = Singleton.Instance; + + if (menuUI.HideoutAreaTransferItemsScreen.isActiveAndEnabled) + { + return; + } + IEnumerable parentItems = item.GetAllParentItems(); if (parentItems.Any(x => x is EquipmentClass)) {