diff options
| author | QAston <none@none> | 2009-05-04 18:31:37 +0200 |
|---|---|---|
| committer | QAston <none@none> | 2009-05-04 18:31:37 +0200 |
| commit | 6998da202884581ba50ed25ec3cfb7a2e45b8e77 (patch) | |
| tree | 2b1ec286d4d9f0cd3ad9d3fdb5b06364d581ddbd /src/game/SpellEffects.cpp | |
| parent | 8ade78cf690d2c0c90ac7fb1681f633706217e71 (diff) | |
*Fix chains of ice
*Correct typo in my prev commit-by megamage
*Fix hearthstone obtaining from innkeeper.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellEffects.cpp')
| -rw-r--r-- | src/game/SpellEffects.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 9da352bfbda..59ee2541ae0 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -413,14 +413,6 @@ void Spell::SpellDamageSchoolDmg(uint32 effect_idx) // Heroic Throw ${$m1+$AP*.50} else if(m_spellInfo->SpellFamilyFlags[1] & 0x00000001) damage+= uint32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 0.5f); - // Shockwave ${$m3/100*$AP} - else if(m_spellInfo->SpellFamilyFlags[1] & 0x00008000) - { - int32 pct = m_caster->CalculateSpellDamage(m_spellInfo, 2, m_spellInfo->EffectBasePoints[2], unitTarget); - if (pct > 0) - damage+= int32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * pct / 100); - break; - } // Thunder Clap else if(m_spellInfo->SpellFamilyFlags[0] & 0x80) { |
