We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0a4610 commit 66cafc2Copy full SHA for 66cafc2
UOP1_Project/Assets/Scripts/UI/Inventory/UIInventory.cs
@@ -328,7 +328,7 @@ void UnselectItem(int itemIndex)
328
}
329
void UpdateInventory()
330
{
331
- FillInventory(_selectedTab.TabType);
+ FillInventory(_selectedTab.TabType, _isNearPot);
332
333
334
void OnActionButtonClicked()
@@ -397,7 +397,7 @@ void CookRecipe(ItemSO recipeToCook)
397
void OnChangeTab(InventoryTabSO tabType)
398
399
400
- FillInventory(tabType.TabType);
+ FillInventory(tabType.TabType, _isNearPot);
401
402
403
public void CloseInventory()
0 commit comments