Skip to content

Commit 981919d

Browse files
authored
Merge pull request #2 from dclamage/openarl-passive-tree-310
Fix for Ascendant nodes double-granting passive points.
2 parents b7ab691 + 1acdbcf commit 981919d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Classes/PassiveTree.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,9 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion)
265265
node.oidx = node.orbitIndex
266266
node.dn = node.name
267267
node.sd = node.stats
268-
node.passivePointsGranted = node.grantedPassivePoints or 0
268+
-- The only effect of passivePointsGranted is to add "Grants N Passive Skill Point(s)" line to the passive.
269+
-- However, the new 3.10 tree already contains that line, so there's no need to duplicate it.
270+
node.passivePointsGranted = 0
269271
end
270272

271273
nodeMap[node.id] = node

0 commit comments

Comments
 (0)