diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2017-12-28 12:14:01 -0300 |
|---|---|---|
| committer | ariel- <ariel-@users.noreply.github.com> | 2017-12-28 12:16:35 -0300 |
| commit | bc570b3cf678694c7f8815bce81b9f0352741dce (patch) | |
| tree | ee5536eb4cc6d7233a40d1628a27cf485d2eb004 /src | |
| parent | f48f043e402b01a4effb7178b49d72b3a6b945af (diff) | |
Core/Spells: Scatter and Silencing shots should be instant
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 263b2d9d66d..0eb8a31ad10 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3762,6 +3762,14 @@ void SpellMgr::LoadSpellInfoCorrections() }); ApplySpellFix({ + 19503, // Scatter Shot + 34490 // Silencing Shot + }, [](SpellInfo* spellInfo) + { + spellInfo->Speed = 0.f; + }); + + ApplySpellFix({ 55741, // Desecration (Rank 1) 68766, // Desecration (Rank 2) 57842 // Killing Spree (Off hand damage) |
