Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/Export/Scripts/passivetree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ for i, group in ipairs(psg.groups) do
nodes = {}
}

for id, refNode in ipairs(passiveRow.RefNodes) do
for id, refNode in ipairs(passiveRow.ConstraintNode) do
printf(" - adding node " .. refNode.Name .. " to unlock constraint")
node.unlockConstraint.nodes[id] = refNode.PassiveSkillNodeId
end
Expand Down Expand Up @@ -979,7 +979,7 @@ for i, group in ipairs(psg.groups) do
table.insert(node["stats"], "Grants Skill: " .. skillName)

-- -- include the stat description
local statDescription =string.sub(string.lower(gemEffect.GrantedEffect.ActiveSkill.StatDescription), 1, -2)
local statDescription =string.sub(string.lower(gemEffect.GrantedEffect.ActiveSkill.StatDescription), 1, -5)
local handle = NewFileSearch("ggpk/" .. statDescription ..".csd")
local almostOnce = false
while handle do
Expand Down
Loading