diff options
author | Nevan <none@none> | 2009-08-23 17:59:32 +0200 |
---|---|---|
committer | Nevan <none@none> | 2009-08-23 17:59:32 +0200 |
commit | 023e98f21f164985a2d0f80cf8c9f6c7c7ac8e79 (patch) | |
tree | cea07a729a82f2e44ab3d0e2580014f3b8f20063 /src/game/Unit.cpp | |
parent | 0b06baee4dcbc18534bbfb3becb679ae42103439 (diff) |
*Fix Glyph of Starfire
*Fix Glyph of Shred
*Fix Glyph of Backstab
-- Thanks megamage for help me with that.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index be24edb329f..263e2b8037c 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -5800,6 +5800,18 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger { switch(dummySpell->Id) { + // Glyph of Starfire + case 54845: + { + triggered_spell_id = 54846; + break; + } + // Glyph of Shred + case 54815: + { + triggered_spell_id = 63974; + break; + } // Glyph of Rake case 54821: { @@ -5975,6 +5987,12 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger { switch(dummySpell->Id) { + // Glyph of Backstab + case 56800: + { + triggered_spell_id = 63975; + break; + } // Deadly Throw Interrupt case 32748: { |