Skip to content

Commit bc1aae8

Browse files
committed
Removed action speed calculation and breakdown display for Explosive Arrow
1 parent b9e95d5 commit bc1aae8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Data/Skills/act_dex.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6249,7 +6249,7 @@ skills["ExplosiveArrow"] = {
62496249
activeSkill.skillData.dpsMultiplier = activeSkill.skillData.dpsMultiplier / barrageProjectiles -- cancel out the normal dps multiplier from barrage that applies to most other skills
62506250
end
62516251

6252-
local fuseApplicationRate = (output.HitChance / 100) * globalOutput.Speed * globalOutput.ActionSpeedMod * activeSkill.skillData.dpsMultiplier * (barrageProjectiles or 1)
6252+
local fuseApplicationRate = (output.HitChance / 100) * globalOutput.Speed * activeSkill.skillData.dpsMultiplier * (barrageProjectiles or 1)
62536253
local initialApplicationRate = fuseApplicationRate
62546254
if activeSkill.skillFlags.totem then
62556255
fuseApplicationRate = fuseApplicationRate * activeTotems
@@ -6283,7 +6283,6 @@ skills["ExplosiveArrow"] = {
62836283
if output.HitChance < 100 then
62846284
t_insert(globalBreakdown.MaxExplosiveArrowFuseCalculated, s_format("x %.2f ^8(hit chance)", output.HitChance / 100))
62856285
end
6286-
t_insert(globalBreakdown.MaxExplosiveArrowFuseCalculated, s_format("x %.2f ^8(action speed)", globalOutput.ActionSpeedMod))
62876286
t_insert(globalBreakdown.MaxExplosiveArrowFuseCalculated, s_format("x %.2f ^8(projectiles)", barrageProjectiles or 1))
62886287
if activeSkill.skillFlags.totem then
62896288
t_insert(globalBreakdown.MaxExplosiveArrowFuseCalculated, s_format("= %.2f ^8(fuse rate)", initialApplicationRate))

0 commit comments

Comments
 (0)