From 59b28e31104e87b042bb5d92923db2004cff3dd8 Mon Sep 17 00:00:00 2001 From: laise Date: Mon, 1 Mar 2010 07:44:14 +0300 Subject: [PATCH] [9493] Fixed wrong spell cast at talent 50391 and ranks apply case. Signed-off-by: VladimirMangos --- src/game/SpellAuras.cpp | 4 ++-- src/shared/revision_nr.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 251099fd6..4039a136b 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -6465,13 +6465,13 @@ void Aura::HandleSpellSpecificBoosts(bool apply) if (apply && (m_target->HasAura(48263) || m_target->HasAura(48266))) { int32 bp = GetModifier()->m_amount; - m_target->CastCustomSpell(m_target, 61261, &bp, NULL, NULL, true, NULL, this); + m_target->CastCustomSpell(m_target, 65095, &bp, NULL, NULL, true, NULL, this); spellId1 = 49772; } else { - m_target->RemoveAurasDueToSpell(61261); + m_target->RemoveAurasDueToSpell(65095); if (!apply) spellId1 = 49772; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 5af714a4e..6864ec73b 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 "9492" + #define REVISION_NR "9493" #endif // __REVISION_NR_H__