We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fca8f4 commit 5ec5a91Copy full SHA for 5ec5a91
1 file changed
src/Classes/PassiveSpec.lua
@@ -801,6 +801,16 @@ function PassiveSpecClass:DeallocNode(node)
801
self:DeallocSingleNode(depNode)
802
end
803
804
+ -- clear any item in Ring 3 when The Unseen Hand is deallocated
805
+ if node.id == 43902 and node.dn:match("Unseen Hand") then
806
+ local ringSlot = self.build.itemsTab.slots["Ring 3"]
807
+ if ringSlot then
808
+ ringSlot.selIndex = 1
809
+ ringSlot:SetSelItemId(0)
810
+ self.build.buildFlag = true
811
+ end
812
813
+
814
-- Rebuild all paths and dependencies for all allocated nodes
815
self:BuildAllDependsAndPaths()
816
0 commit comments