diff options
| author | Keader <keader.android@gmail.com> | 2017-06-18 14:44:02 -0300 |
|---|---|---|
| committer | Keader <keader.android@gmail.com> | 2017-06-18 14:44:02 -0300 |
| commit | b74ed00f4eacbbf5e1d4a058826182a7c6262bde (patch) | |
| tree | b30928b73ea38b793cfff44d60c603065b0ea2b2 /src | |
| parent | f6fdcf4c0dcdb0d367be7a8b2ba4f94c6a42f388 (diff) | |
Core/Spells: Fixed range issue with Killing Spree
Closes #19913
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index d53f7140134..a14eddcc383 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3647,10 +3647,10 @@ void SpellMgr::LoadSpellInfoCorrections() spellInfo->RangeEntry = sSpellRangeStore.LookupEntry(155); // Hunter Range (Long) }); - // Desecration ApplySpellFix({ - 55741, // (Rank 1) - 68766 // (Rank 2) + 55741, // Desecration (Rank 1) + 68766, // Desecration (Rank 2) + 57842 // Killing Spree (Off hand damage) }, [](SpellInfo* spellInfo) { spellInfo->RangeEntry = sSpellRangeStore.LookupEntry(2); // Melee Range @@ -3671,7 +3671,7 @@ void SpellMgr::LoadSpellInfoCorrections() // Water Globule (Ichoron) ApplySpellFix({ 54258, 54264, 54265, 54266, 54267 }, [](SpellInfo* spellInfo) { - // in 3.3.5 there is only one radius in dbc which is 0 yards in this + // in 3.3.5 there is only one radius in dbc which is 0 yards in this // use max radius from 4.3.4 spellInfo->Effects[EFFECT_0].RadiusEntry = sSpellRadiusStore.LookupEntry(EFFECT_RADIUS_25_YARDS); }); |
