Jump to content

[applied in 3.2.2 branch][Fix] Envenom Damage


Guest Tequila

Recommended Posts

What bug does the patch fix? What features does the patch add?

Envenom gains not enough bonus from Attackpower. (wowwiki envenom page has outdated formulars, see wowhead, official servers)

For which repository revision was the patch created?

8353

Who has been writing this patch? Please include either forum user names or email addresses.

Me, Tequila

diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp
index c42ecbf..fa5371e 100644
--- a/src/game/SpellEffects.cpp
+++ b/src/game/SpellEffects.cpp
@@ -535,7 +535,7 @@ void Spell::EffectSchoolDMG(uint32 effect_idx)
                            for (int i=0; i< doses; i++)
                                unitTarget->RemoveSingleSpellAurasFromStack(spellId);
                            damage *= doses;
-                            damage += int32(((Player*)m_caster)->GetTotalAttackPowerValue(BASE_ATTACK) * 0.03f * doses);
+                            damage += int32(((Player*)m_caster)->GetTotalAttackPowerValue(BASE_ATTACK) * 0.07f * doses);
                        }
                        // Eviscerate and Envenom Bonus Damage (item set effect)
                        if(m_caster->GetDummyAura(37169))

Link to comment
Share on other sites

  • 1 month later...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use