diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-04-21 01:35:42 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2017-04-21 01:37:07 -0300 |
commit | c296d255e25a2d0eb7155f64eea32cc36fed280a (patch) | |
tree | 7b6bb0e696b5518abf842d78b9ef56392b85421b | |
parent | 34b63019ae977ef29606e8b1e0acc2442a63e295 (diff) |
Revert "Core/Spell: don't set scaleAura for some special spells"
This reverts commit 1ca8434b365687dbd12ca232a615d126234eba5e.
Closes #19472
-rw-r--r-- | src/server/game/Spells/SpellInfo.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index fdf6f7bef4a..03951f1c5bc 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -3359,10 +3359,6 @@ bool SpellInfo::_IsPositiveEffect(uint8 effIndex, bool deep) const if (HasAttribute(SPELL_ATTR0_NEGATIVE_1)) return false; - // these spells must not be downscaled, thus marking them negative (see GetAuraRankForLevel) - if (HasAttribute(SPELL_ATTR2_UNK3)) - return false; - switch (SpellFamilyName) { case SPELLFAMILY_GENERIC: @@ -3454,6 +3450,7 @@ bool SpellInfo::_IsPositiveEffect(uint8 effIndex, bool deep) const case SPELL_AURA_MOD_STEALTH: return true; case SPELL_AURA_CHANNEL_DEATH_ITEM: + case SPELL_AURA_EMPATHY: return false; } } |