Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/Classes/PassiveSpec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -801,6 +801,16 @@ function PassiveSpecClass:DeallocNode(node)
self:DeallocSingleNode(depNode)
end

-- clear any item in Ring 3 when The Unseen Hand is deallocated
if node.id == 43902 and node.dn:match("Unseen Hand") then
local ringSlot = self.build.itemsTab.slots["Ring 3"]
if ringSlot then
ringSlot.selIndex = 1
ringSlot:SetSelItemId(0)
self.build.buildFlag = true
end
end

-- Rebuild all paths and dependencies for all allocated nodes
self:BuildAllDependsAndPaths()
end
Expand Down
Loading