diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellAuras.cpp | 4 | ||||
-rw-r--r-- | src/game/SpellEffects.cpp | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index c891f6f7eb7..02ec1605c8b 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -4763,8 +4763,8 @@ void AuraEffect::HandlePeriodicDamage(bool apply, bool Real, bool changeAmount) // Rake if (m_spellProto->SpellFamilyFlags[0] & 0x1000) { - // $AP*0.06 bonus per tick - m_amount += int32(caster->GetTotalAttackPowerValue(BASE_ATTACK) * 6 / 100); + // $AP*0.18 bonus per tick + m_amount += int32(caster->GetTotalAttackPowerValue(BASE_ATTACK) * 18 / 100); return; } // Lacerate diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 33ab0ae98ca..11dc66f8777 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -521,8 +521,9 @@ void Spell::SpellDamageSchoolDmg(uint32 effect_idx) damage += int32(((Player*)m_caster)->GetComboPoints() * ap * 7 / 100); } // Rake - else if(m_spellInfo->SpellFamilyFlags[0] & 0x1000) + else if(m_spellInfo->SpellFamilyFlags[0] & 0x1000 && m_spellInfo->Effect[2]==SPELL_EFFECT_ADD_COMBO_POINTS) { + // $AP*0.01 bonus damage += int32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) / 100); } // Swipe |