Skip to content

Commit a26885a

Browse files
committed
Fix typo bug added in PathOfBuildingCommunity#569
1 parent ec214b1 commit a26885a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Modules/CalcOffence.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4031,7 +4031,7 @@ function calcs.offence(env, actor, activeSkill)
40314031
t_insert(breakdownDPS, pass.label..":")
40324032
end
40334033
if sourceHitDmg == sourceCritDmg or output.CritChance == 0 then
4034-
t_insert(breakdownDPS, "Total base DPS per " .. type .. ":")
4034+
t_insert(breakdownDPS, "Total base DPS per " .. ailment .. ":")
40354035
t_insert(breakdownDPS, s_format("%.1f ^8(source damage)",sourceHitDmg))
40364036
if sourceMult > 1 then
40374037
t_insert(breakdownDPS, s_format("x %.2f ^8(inflicting as though dealing more damage)", sourceMult))
@@ -4055,7 +4055,7 @@ function calcs.offence(env, actor, activeSkill)
40554055
end
40564056
end
40574057
if baseFromHit > 0 and baseFromCrit > 0 then
4058-
t_insert(breakdownDPS, "Total base DPS per " .. type .. ":")
4058+
t_insert(breakdownDPS, "Total base DPS per " .. ailment .. ":")
40594059
t_insert(breakdownDPS, s_format("%.1f + %.1f", baseFromHit, baseFromCrit))
40604060
if sourceMult == 1 then
40614061
t_insert(breakdownDPS, s_format("= %.1f", baseVal))

0 commit comments

Comments
 (0)