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__