diff options
| author | Exodius <Exodius@users.noreply.github.com> | 2014-10-15 19:34:09 +0200 |
|---|---|---|
| committer | Exodius <Exodius@users.noreply.github.com> | 2014-10-15 19:34:09 +0200 |
| commit | f6e4105306412769318f5eacf7ebcec21721a241 (patch) | |
| tree | 08b11ee0ccae3f2a4382eca5f9dd1f791f8cb59f /src/server | |
| parent | 4542773912c46206298848184e5b8e00688a3303 (diff) | |
Core/Spells: Fix Ebon Plague and Wandering Plague
Ebon Plague fix by @Unholychick
Wandering Plague fix by @tobmaps
Thanks to @maxxx for Ebon Plague correction.
Diffstat (limited to 'src/server')
| -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 |
