diff options
author | maximius <none@none> | 2009-10-31 16:32:18 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-10-31 16:32:18 -0700 |
commit | 548ba65cf2df2b7c69d1ea24b425235d31e46bdf (patch) | |
tree | 6dd6bbdfa5fef9f160b335f1b6eafae27e74a623 /src/game/Unit.cpp | |
parent | 743578b81f297734162785fe2e2daa32eb5d8aad (diff) |
*Correct Sapphiron's Blizzard spell DoSummon parameters
*Glyph of Blocking, thanks Sisif
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 21de3d3780b..c3cbb57045f 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -4859,7 +4859,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger { switch (dummySpell->Id) { - // BloodWorms Health Leech + // Bloodworms Health Leech case 50453: { if (Unit *owner = this->GetOwner()) @@ -4922,6 +4922,12 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger triggered_spell_id = 26654; break; } + // Glyph of Blocking + case 58375: + { + triggered_spell_id = 58374; + break; + } // Unstable Power case 24658: { |