From ca8a67ab9117756218a50a75f0b96d762d825eb6 Mon Sep 17 00:00:00 2001 From: QAston Date: Sat, 11 Apr 2009 19:45:14 +0200 Subject: *Fix Faerie Fire (Feral) damage --HG-- branch : trunk --- src/game/SpellEffects.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 928fd74c6ba..d9ca84c18ae 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -500,6 +500,11 @@ void Spell::SpellDamageSchoolDmg(uint32 effect_idx) { damage += int32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK)*0.08f); } + // Faerie Fire (Feral) + else if(m_spellInfo->Id == 60089) + { + damage += int32((m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 5 / 100) + 1); + } //Mangle Bonus for the initial damage of Lacerate and Rake if((m_spellInfo->SpellFamilyFlags.IsEqual(0x1000,0,0) && m_spellInfo->SpellIconID==494) || (m_spellInfo->SpellFamilyFlags.IsEqual(0,0x100,0) && m_spellInfo->SpellIconID==2246)) -- cgit v1.2.3