From 41dda7eee782dde4f272d9daed9d52fe2bb8b109 Mon Sep 17 00:00:00 2001 From: Dramacydal Date: Tue, 26 Mar 2013 13:12:45 +0300 Subject: [PATCH] [c12548] Compilefix Signed-off-by: Dramacydal --- 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 973f15a09..89e0c0022 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -9339,9 +9339,9 @@ bool SpellAuraHolder::IsNeedVisibleSlot(Unit const* caster) const return true; else if (IsSpellHaveAura(m_spellProto, SPELL_AURA_ALLOW_CAST_WHILE_MOVING)) return true; - else if (IsSpellHaveAura(SPELL_AURA_OVERRIDE_ACTIONBAR_SPELLS)) + else if (IsSpellHaveAura(m_spellProto, SPELL_AURA_OVERRIDE_ACTIONBAR_SPELLS)) return true; - else if (IsSpellHaveAura(SPELL_AURA_OVERRIDE_ACTIONBAR_SPELLS_2)) + else if (IsSpellHaveAura(m_spellProto, SPELL_AURA_OVERRIDE_ACTIONBAR_SPELLS_2)) return true; // passive auras (except totem auras) do not get placed in the slots diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 9b71f2cd6..73dfcf6ca 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 "12547" + #define REVISION_NR "12548" #endif // __REVISION_NR_H__