diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index d68470c4b57..2238634bb98 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -2994,6 +2994,10 @@ SpellInfo const* SpellInfo::GetAuraRankForLevel(uint8 level) const if (IsPassive()) return this; + // Client ignores spell with these attributes (sub_53D9D0) + if (HasAttribute(SPELL_ATTR0_NEGATIVE_1) || HasAttribute(SPELL_ATTR2_UNK3)) + return this; + bool needRankSelection = false; for (uint8 i = 0; i < MAX_SPELL_EFFECTS; ++i) {