[7792] Fix one rogue spell AP bonus

Signed-off-by: DiSlord <DiSlord@nomail.ru>
This commit is contained in:
DiSlord 2009-05-06 19:16:07 +04:00
parent ab170653fc
commit f2c514e810
2 changed files with 2 additions and 2 deletions

View file

@ -504,7 +504,7 @@ void Spell::EffectSchoolDMG(uint32 effect_idx)
// Gouge
else if(m_spellInfo->SpellFamilyFlags & 0x0000000000000008LL)
{
damage += int32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK)*0.02f);
damage += int32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK)*0.21f);
}
// Instant Poison
else if(m_spellInfo->SpellFamilyFlags & 0x0000000000002000LL)

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7791"
#define REVISION_NR "7792"
#endif // __REVISION_NR_H__