Release 1.16

- Fixed bug with jewel attribute totals
This commit is contained in:
Openarl
2016-10-02 22:50:15 +10:00
parent 4a70a0c373
commit fc7d9036a6
4 changed files with 13 additions and 5 deletions

View File

@@ -485,7 +485,7 @@ function PassiveTreeViewClass:AddNodeTooltip(node, build)
if node.type == "socket" and node.alloc then
local socket, jewel = build.itemsTab:GetSocketAndJewelForNodeID(node.id)
if jewel then
build.itemsTab:AddItemTooltip(jewel)
build.itemsTab:AddItemTooltip(jewel, { nodeId = node.id })
else
main:AddTooltipLine(24, "^7"..node.dn..(launch.devMode and IsKeyDown("ALT") and " ["..node.id.."]" or ""))
end