Fix Mines counting towards # of Auras affecting you mastery (#3693)
Co-authored-by: LocalIdentity <localidentity2@gmail.com>
This commit is contained in:
@@ -1547,7 +1547,7 @@ function calcs.perform(env, avoidCache)
|
||||
if env.mode_buffs then
|
||||
local auraList = { }
|
||||
for _, activeSkill in ipairs(env.player.activeSkillList) do
|
||||
if activeSkill.skillTypes[SkillType.Aura] and not activeSkill.skillData.auraCannotAffectSelf and not auraList[activeSkill.skillCfg.skillName] then
|
||||
if activeSkill.skillTypes[SkillType.Aura] and not activeSkill.skillTypes[SkillType.Mine] and not activeSkill.skillData.auraCannotAffectSelf and not auraList[activeSkill.skillCfg.skillName] then
|
||||
auraList[activeSkill.skillCfg.skillName] = true
|
||||
modDB.multipliers["AuraAffectingSelf"] = (modDB.multipliers["AuraAffectingSelf"] or 0) + 1
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user