diff options
author | Nertx <Nertx@users.noreply.github.com> | 2016-03-24 14:48:33 +0100 |
---|---|---|
committer | Naios <naios-dev@live.de> | 2016-03-24 14:59:47 +0100 |
commit | c9751eb1f822df6a92b7820328a7b7f025d0c997 (patch) | |
tree | d5ffe99d07d38406ff52951df536072bddd80def /src | |
parent | 52310f00eb5fd5b1226be27134459b98c3f5a403 (diff) |
Core/Game: Fix Tremor Totem in LoS
* Closes #15012
Signed-off-by: Naios <naios-dev@live.de>
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 635a545bd5b..50f750f2ca5 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3242,6 +3242,8 @@ void SpellMgr::LoadSpellInfoCorrections() spellInfo->AttributesEx4 = 0; break; case 8145: // Tremor Totem (instant pulse) + spellInfo->AttributesEx2 |= SPELL_ATTR2_CAN_TARGET_NOT_IN_LOS; + /*no break*/ case 6474: // Earthbind Totem (instant pulse) spellInfo->AttributesEx5 |= SPELL_ATTR5_START_PERIODIC_AT_APPLY; break; |