Skip to content

Commit 876ef67

Browse files
author
LocalIdentity
committed
Fix Reliquarian Widowhail Ascendancy not working
We were not grabbing the mod from the tree so it wasn't working at all
1 parent a614c6a commit 876ef67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Modules/CalcSetup.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ function calcs.initEnv(build, mode, override, specEnv)
10831083
end
10841084
end
10851085
elseif item.type == "Quiver" and items["Weapon 1"] and items["Weapon 1"].name:match("Widowhail") then
1086-
local widowHailMod=(1 + (items["Weapon 1"].baseModList:Sum("INC", nil, "EffectOfBonusesFromQuiver") or 100) / 100)
1086+
local widowHailMod=(1 + (items["Weapon 1"].baseModList:Sum("INC", nil, "EffectOfBonusesFromQuiver") + env.initialNodeModDB:Sum("INC", nil, "EffectOfBonusesFromQuiver") or 100) / 100)
10871087
scale = scale * widowHailMod
10881088
env.modDB:NewMod("WidowHailMultiplier", "BASE", widowHailMod, "Widowhail")
10891089
local combinedList = new("ModList")

0 commit comments

Comments
 (0)