From 28307aa1a2406e604505b33bd37d6b3b86dfd6e4 Mon Sep 17 00:00:00 2001 From: Salikh Gurgenidze Date: Mon, 19 Jan 2026 17:08:12 +0400 Subject: [PATCH] Hide hearthstone from bags --- UI/FrameHelpers.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/FrameHelpers.lua b/UI/FrameHelpers.lua index 6c48877..8c0de9f 100644 --- a/UI/FrameHelpers.lua +++ b/UI/FrameHelpers.lua @@ -45,9 +45,9 @@ function Guda_CategorizeItem(itemData, bagID, slotID, categories, specialItems, end if showHome then table.insert(specialItems.Hearthstone, {bagID = bagID, slotID = slotID, itemData = itemData}) - return end - -- If Home is disabled, fall through to normal categorization + -- Always return - if Home is disabled, Hearthstone is hidden completely + return elseif addon.Modules.SortEngine and addon.Modules.SortEngine.IsMount and addon.Modules.SortEngine.IsMount(itemData.texture) then table.insert(specialItems.Mount, {bagID = bagID, slotID = slotID, itemData = itemData}) return