diff options
| author | click <none@none> | 2010-04-21 22:33:20 +0200 |
|---|---|---|
| committer | click <none@none> | 2010-04-21 22:33:20 +0200 |
| commit | 3a826ecfeea9222fdd4f5528a4e5e09eb7a4a2ba (patch) | |
| tree | 0b61e5ba798e3c89834a8ff5cbfe4eacf081c162 /src/game/SpellMgr.cpp | |
| parent | e4164b8c161c8d61719ccf20932ba55a338e4827 (diff) | |
Fix Beacon of Light: make it work when casted on other players (no initial aggro on caster)
Fix by Liberate
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellMgr.cpp')
| -rw-r--r-- | src/game/SpellMgr.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 5c62fbfc27c..b52811ca220 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -3843,6 +3843,9 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->MaxAffectedTargets = 3; count++; break; + case 53651: + spellInfo->AttributesEx3 |= SPELL_ATTR_EX3_NO_INITIAL_AGGRO; + break; default: break; } |
