Skip to content

Commit 40c79a2

Browse files
LocalIdentityLocalIdentity
andauthored
Fix Hand of Phrecia enabling Generosity Auras (#9448)
3.25 made a change where the gloves no longer allow Auras linked to Generosity to still affect the character We added a workaround at the time for them to work together so I'm just removing that workaround now that the game has fixed it Co-authored-by: LocalIdentity <localidentity2@gmail.com>
1 parent fe84a2f commit 40c79a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Modules/CalcPerform.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2228,7 +2228,7 @@ function calcs.perform(env, skipEHP)
22282228
t_insert(extraAuraModList, copyTable(value.mod, true))
22292229
end
22302230
end
2231-
if not activeSkill.skillData.auraCannotAffectSelf or activeSkill.skillModList:Flag(skillCfg, "SelfAurasAffectYouAndLinkedTarget") then
2231+
if not activeSkill.skillData.auraCannotAffectSelf then
22322232
local inc = skillModList:Sum("INC", skillCfg, "AuraEffect", "BuffEffect", "BuffEffectOnSelf", "AuraEffectOnSelf", "AuraBuffEffect", "SkillAuraEffectOnSelf")
22332233
local more = skillModList:More(skillCfg, "AuraEffect", "BuffEffect", "BuffEffectOnSelf", "AuraEffectOnSelf", "AuraBuffEffect", "SkillAuraEffectOnSelf")
22342234
local mult = (1 + inc / 100) * more

0 commit comments

Comments
 (0)