From e81efc061afe4a074631d8a231a558b083ad61b6 Mon Sep 17 00:00:00 2001 From: Blitz54 Date: Tue, 23 Sep 2025 02:19:15 -0500 Subject: [PATCH] Fix tooltip for Crystalline Phylactery --- src/Classes/PassiveTreeView.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua index 62a4fe018d..b781794cc2 100644 --- a/src/Classes/PassiveTreeView.lua +++ b/src/Classes/PassiveTreeView.lua @@ -1177,7 +1177,7 @@ end function PassiveTreeViewClass:AddNodeTooltip(tooltip, node, build, incSmallPassiveSkillEffect) -- Special case for sockets - if node.type == "Socket" and node.alloc then + if (node.type == "Socket" or node.containJewelSocket) and node.alloc then local socket, jewel = build.itemsTab:GetSocketAndJewelForNodeID(node.id) if jewel then build.itemsTab:AddItemTooltip(tooltip, jewel, { nodeId = node.id }) @@ -1376,7 +1376,7 @@ function PassiveTreeViewClass:AddNodeTooltip(tooltip, node, build, incSmallPassi end end - if node.containJewelSocket then + if node.containJewelSocket and node.alloc then tooltip:AddSeparator(14) -- Jewel socket with a jewel in it, show the jewel tooltip instead of the node tooltip local socket, jewel = build.itemsTab:GetSocketAndJewelForNodeID(node.id)