diff options
author | Xanadu <none@none> | 2010-01-24 23:10:15 +0100 |
---|---|---|
committer | Xanadu <none@none> | 2010-01-24 23:10:15 +0100 |
commit | 91ee99a7bfa40be58f77f117fba61b15dc2fc7ac (patch) | |
tree | 11cd021288b20512527ac11cbd958b1c73a531d0 /src/game/SpellMgr.cpp | |
parent | 41fb791f1fa51a9db03192c9fc1c106e52bb3b51 (diff) |
Fix Frost Trap Aura spamming log due to nonexistent triggered spell
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellMgr.cpp')
-rw-r--r-- | src/game/SpellMgr.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index ab5e1086751..588e7ad8b8d 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -3849,6 +3849,10 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->EffectImplicitTargetB[1] = TARGET_UNIT_AREA_ENTRY_SRC; count++; break; + case 13810: // Frost Trap Aura + spellInfo->Effect[1] = 0; + count++; + break; default: break; } |