Skip to content

Commit 86f6116

Browse files
author
justjuangui
committed
Fix ascendency filtering logic to use 'Replace' property
1 parent 584bacb commit 86f6116

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Export/Scripts/passivetree.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ for i, classId in ipairs(psg.passives) do
665665

666666
local ascendancies = dat("ascendancy"):GetRowList("Class", character)
667667
for k, ascendency in ipairs(ascendancies) do
668-
if ascendency.Name:find(ignoreFilter) ~= nil or ascendency.isDisabled or ascendency.Id == "Witch3b" then
668+
if ascendency.Name:find(ignoreFilter) ~= nil or ascendency.isDisabled or ascendency.Replace then
669669
printf("Ignoring ascendency " .. ascendency.Name .. " for class " .. character.Name)
670670
goto continue3
671671
end

0 commit comments

Comments
 (0)