Skip to content

Commit

Permalink
FIX: infite recursion issue with Manaforged arrows (#6059)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paliak authored Apr 22, 2023
1 parent 3e58e74 commit ea60218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Modules/CalcPerform.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3211,7 +3211,7 @@ function calcs.perform(env, avoidCache, fullDPSSkipEHP)
if not skill.skillTypes[SkillType.Triggered] and skill ~= env.player.mainSkill and not skill.skillData.triggeredByManaPercentSpent and band(skill.skillCfg.flags, ModFlag.Bow) > 0 then
local uuid = cacheSkillUUID(skill)
if not GlobalCache.cachedData["CACHE"][uuid] or GlobalCache.noCache then
calcs.buildActiveSkill(env, "CACHE", skill)
calcs.buildActiveSkill(env, "CACHE", skill, true)
end

if GlobalCache.cachedData["CACHE"][uuid] then
Expand Down

0 comments on commit ea60218

Please sign in to comment.