From f2c514e81081b1c4aa3cfd5d8564f96aa09ddbe0 Mon Sep 17 00:00:00 2001 From: DiSlord Date: Wed, 6 May 2009 19:16:07 +0400 Subject: [PATCH] [7792] Fix one rogue spell AP bonus Signed-off-by: DiSlord --- src/game/SpellEffects.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index b51ab8204..2701678bf 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -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) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ed4992734..1197c10d0 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7791" + #define REVISION_NR "7792" #endif // __REVISION_NR_H__