aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKandera <KanderaDev@gmail.com>2012-04-25 09:15:09 -0400
committerKandera <KanderaDev@gmail.com>2012-04-25 09:15:09 -0400
commit0ec4d55ca641bc8c5e117bec28d16255830f53fa (patch)
tree1e97df9a956c025e67723f171c46cdde19955225 /src
parent5878a790db5d6a0a8acb8cdac656632bf53e3a10 (diff)
Core/Spells: Fix build error introduced in previous commit.
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Spells/spell_priest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_priest.cpp b/src/server/scripts/Spells/spell_priest.cpp
index 2ef782d6dcf..65bbd86d5e1 100644
--- a/src/server/scripts/Spells/spell_priest.cpp
+++ b/src/server/scripts/Spells/spell_priest.cpp
@@ -312,7 +312,7 @@ public:
if (Aura* aur = caster->GetAura(SPELL_T9_HEALING_2_PIECE))
{
int32 heal = GetHitHeal();
- AddPctN(heal, aur->GetSpellInfo()->Effects[0]->CalcValue());
+ AddPctN(heal, aur->GetSpellInfo()->Effects[0].CalcValue();
SetHitHeal(heal);
}
}