From 1e510e768473acbd3ade76d5068a1ca7f47c81d3 Mon Sep 17 00:00:00 2001 From: NL <56325975+NL908@users.noreply.github.com> Date: Thu, 12 Jun 2025 21:51:35 -0400 Subject: [PATCH] Removed action speed calculation and breakdown display for Explosive Arrow (#8377) --- src/Data/Skills/act_dex.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Data/Skills/act_dex.lua b/src/Data/Skills/act_dex.lua index 45de635f..92932259 100644 --- a/src/Data/Skills/act_dex.lua +++ b/src/Data/Skills/act_dex.lua @@ -6249,7 +6249,7 @@ skills["ExplosiveArrow"] = { activeSkill.skillData.dpsMultiplier = activeSkill.skillData.dpsMultiplier / barrageProjectiles -- cancel out the normal dps multiplier from barrage that applies to most other skills end - local fuseApplicationRate = (output.HitChance / 100) * globalOutput.Speed * globalOutput.ActionSpeedMod * activeSkill.skillData.dpsMultiplier * (barrageProjectiles or 1) + local fuseApplicationRate = (output.HitChance / 100) * globalOutput.Speed * activeSkill.skillData.dpsMultiplier * (barrageProjectiles or 1) local initialApplicationRate = fuseApplicationRate if activeSkill.skillFlags.totem then fuseApplicationRate = fuseApplicationRate * activeTotems @@ -6283,7 +6283,6 @@ skills["ExplosiveArrow"] = { if output.HitChance < 100 then t_insert(globalBreakdown.MaxExplosiveArrowFuseCalculated, s_format("x %.2f ^8(hit chance)", output.HitChance / 100)) end - t_insert(globalBreakdown.MaxExplosiveArrowFuseCalculated, s_format("x %.2f ^8(action speed)", globalOutput.ActionSpeedMod)) t_insert(globalBreakdown.MaxExplosiveArrowFuseCalculated, s_format("x %.2f ^8(projectiles)", barrageProjectiles or 1)) if activeSkill.skillFlags.totem then t_insert(globalBreakdown.MaxExplosiveArrowFuseCalculated, s_format("= %.2f ^8(fuse rate)", initialApplicationRate))