Skip to content

Commit 31844ad

Browse files
LocalIdentityLocalIdentity
andauthored
Fix Autoexertion not applying Mana reservation to Warcries (#8029)
I can't think of a better way to handle this Co-authored-by: LocalIdentity <localidentity2@gmail.com>
1 parent 78b16a0 commit 31844ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Modules/CalcPerform.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1529,7 +1529,7 @@ function calcs.perform(env, skipEHP)
15291529
breakdown.ManaReserved = { reservations = { } }
15301530
end
15311531
for _, activeSkill in ipairs(env.player.activeSkillList) do
1532-
if activeSkill.skillTypes[SkillType.HasReservation] and not activeSkill.skillTypes[SkillType.ReservationBecomesCost] then
1532+
if activeSkill.skillTypes[SkillType.HasReservation] or activeSkill.skillData.SupportedByAutoexertion and not activeSkill.skillTypes[SkillType.ReservationBecomesCost] then
15331533
local skillModList = activeSkill.skillModList
15341534
local skillCfg = activeSkill.skillCfg
15351535
local mult = floor(skillModList:More(skillCfg, "SupportManaMultiplier"), 4)

0 commit comments

Comments
 (0)