diff options
author | Warpten <vertozor@gmail.com> | 2014-10-18 15:54:49 +0200 |
---|---|---|
committer | Warpten <vertozor@gmail.com> | 2014-10-18 15:54:49 +0200 |
commit | 8308f4a234b0bc4f40eab4f7d80c2e01a002429f (patch) | |
tree | 0ee078007c22a985056f4c65857bd81aa7b0e0a5 | |
parent | 0de1603944fe96253e02a1564881c80fe6519ebb (diff) | |
parent | f6e4105306412769318f5eacf7ebcec21721a241 (diff) |
Merge pull request #13334 from Exodius/master
Core/Spells: Fix Ebon Plague and Wandering Plague
-rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index b853cf82b00..99c8b017a3c 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3195,6 +3195,9 @@ void SpellMgr::LoadSpellInfoCorrections() case 16835: spellInfo->DurationEntry = sSpellDurationStore.LookupEntry(21); break; + case 65142: // Ebon Plague + spellInfo->AttributesEx3 &= ~SPELL_ATTR3_STACK_FOR_DIFF_CASTERS; + break; case 51735: // Ebon Plague case 51734: case 51726: @@ -3224,6 +3227,7 @@ void SpellMgr::LoadSpellInfoCorrections() spellInfo->Effects[EFFECT_1].Effect = SPELL_EFFECT_MODIFY_THREAT_PERCENT; spellInfo->Effects[EFFECT_1].BasePoints = -6; // -5% break; + case 50526: // Wandering Plague case 63675: // Improved Devouring Plague spellInfo->AttributesEx3 |= SPELL_ATTR3_NO_DONE_BONUS; break; @@ -3328,7 +3332,7 @@ void SpellMgr::LoadSpellInfoCorrections() break; case 51798: // Brewfest - Relay Race - Intro - Quest Complete case 47134: // Quest Complete - //! HACK: This spell break quest complete for alliance and on retail not used °_O + //! HACK: This spell break quest complete for alliance and on retail not used °_O spellInfo->Effects[EFFECT_0].Effect = 0; break; // ULDUAR SPELLS |