aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorQAston <none@none>2009-04-11 19:45:14 +0200
committerQAston <none@none>2009-04-11 19:45:14 +0200
commitca8a67ab9117756218a50a75f0b96d762d825eb6 (patch)
tree7d93c1a2d43f64a1e42f3aced2634f4a1e0207d5 /src
parente9a98392a100bc5ef5286af59181a0904a4be791 (diff)
*Fix Faerie Fire (Feral) damage
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/SpellEffects.cpp5
1 files changed, 5 insertions, 0 deletions
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))