diff options
author | ariel- <ariel-@users.noreply.github.com> | 2016-09-01 01:36:29 -0300 |
---|---|---|
committer | joschiwald <joschiwald.trinity@gmail.com> | 2017-02-18 17:59:17 +0100 |
commit | 163f5b02af0d08af59c4664cf804da71821b62e5 (patch) | |
tree | 580976645640eb9eafddfa487179f3cd759e3f92 /src | |
parent | 7a971d7ed2cfdba150f1b8686943399bcf1c7cc2 (diff) |
Core/Spell: Workaround cobra strikes into a charged aura instead of stacked.
Fixes #754
(cherry picked from commit 65d0a9478dfcd6c503f78bdf91510e671ea0354f)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index c3d03a009da..8f7799cb3f3 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3101,6 +3101,10 @@ void SpellMgr::LoadSpellInfoCorrections() case 44544: // Fingers of Frost const_cast<SpellEffectInfo*>(spellInfo->GetEffect(EFFECT_0))->SpellClassMask = flag128(685904631, 1151048, 0, 0); break; + case 53257: // Cobra Strikes + spellInfo->ProcCharges = 2; + spellInfo->StackAmount = 0; + break; case 28200: // Ascendance (Talisman of Ascendance trinket) spellInfo->ProcCharges = 6; break; |