mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[9534] Attack Power bonus for spell 64382.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
81c6f3ff9b
commit
e49fac9ef2
2 changed files with 4 additions and 1 deletions
|
|
@ -401,6 +401,9 @@ void Spell::EffectSchoolDMG(SpellEffectIndex effect_idx)
|
|||
// Heroic Throw ${$m1+$AP*.50}
|
||||
else if (m_spellInfo->SpellFamilyFlags & UI64LIT(0x0000000100000000))
|
||||
damage+= uint32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 0.5f);
|
||||
// Shattering Throw ${$m1+$AP*.50}
|
||||
else if (m_spellInfo->SpellFamilyFlags & UI64LIT(0x0040000000000000))
|
||||
damage+= uint32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 0.5f);
|
||||
// Shockwave ${$m3/100*$AP}
|
||||
else if (m_spellInfo->SpellFamilyFlags & UI64LIT(0x0000800000000000))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "9533"
|
||||
#define REVISION_NR "9534"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue