From 73532e08a83952ca6991f346942d921b4ed4d4ce Mon Sep 17 00:00:00 2001 From: cupkax Date: Sun, 30 Aug 2026 11:12:22 +0000 Subject: [PATCH] Apply changes from https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/10188 --- src/Modules/CalcOffence.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Modules/CalcOffence.lua b/src/Modules/CalcOffence.lua index 40425570cc..14cc90e626 100644 --- a/src/Modules/CalcOffence.lua +++ b/src/Modules/CalcOffence.lua @@ -770,6 +770,7 @@ function calcs.offence(env, actor, activeSkill) skillModList:NewMod("Damage", "INC", mod.value * multiplier, mod.source, bor(band(mod.flags, bnot(ModFlag.Spell)), ModFlag.Attack), mod.keywordFlags, unpack(modifiers)) if mod.source == "Strength" then -- Prevent double-dipping from converted strength's damage bonus skillModList:ReplaceMod("PhysicalDamage", "INC", 0, "Strength", ModFlag.Melee) + skillModList:ReplaceMod("PhysicalDamage", "INC", 0, "Strength", bor(ModFlag.Attack, ModFlag.Projectile)) end end end