[8117] Fixed spell 6343 and ranks, now getting bonus from AP

signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
ApoC 2009-07-04 21:23:03 +02:00
parent 9798dbe5e2
commit 24f13bdcb7
2 changed files with 6 additions and 1 deletions

View file

@ -398,6 +398,11 @@ void Spell::EffectSchoolDMG(uint32 effect_idx)
damage+= int32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * pct / 100);
break;
}
// Thunder Clap
else if (m_spellInfo->SpellFamilyFlags & UI64LIT(0x0000000000000080))
{
damage+=int32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 12 / 100);
}
break;
}
case SPELLFAMILY_WARLOCK:

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8116"
#define REVISION_NR "8117"
#endif // __REVISION_NR_H__