diff options
author | maximius <none@none> | 2009-11-17 20:10:58 -0800 |
---|---|---|
committer | maximius <none@none> | 2009-11-17 20:10:58 -0800 |
commit | 308c833a1be575aff04728fbee2fa03aedc76fab (patch) | |
tree | 17024d709326e63f55a7a2b4cae08fa9b6b3ebac /src | |
parent | 963a6c14f15e9219f9afb5fc1b2a1170c9b8292c (diff) |
*Implement Glyph of Shadowflame, thanks lobuz
--HG--
branch : trunk
Diffstat (limited to 'src')
-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 4320ad895f9..4348f60df31 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -5595,12 +5595,18 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger { // Glyph of Siphon Life if (HasAura(56216)) - triggerAmount += triggerAmount * 25 / 100; + triggerAmount += triggerAmount / 4; triggered_spell_id = 63106; target = this; basepoints0 = int32(damage*triggerAmount/100); break; } + // Glyph of Shadowflame + case 63310: + { + triggered_spell_id = 63311; + break; + } // Glyph of Life Tap case 63320: { |