diff options
author | megamage <none@none> | 2009-03-09 17:37:26 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-09 17:37:26 -0600 |
commit | 9bfd8a08e997b6e61ac6e63e3e85b6c2c8ce4e4c (patch) | |
tree | 7fc8c4eb382bb1e6be4f6ba6aef621a124b1e9a9 /src/game/Unit.cpp | |
parent | edcfae2c8a9799e353c0e049d8302d28bcb1336c (diff) |
*Flat Modifier for Glyph of Spiritual Attunement Author: multiplexer
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index affe75d41d0..c0dbed84d04 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -6129,6 +6129,17 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu break; } + // Glyph of Spiritual Attunement + case 54924: + { + // if healed by another unit (pVictim) + if(this == pVictim) + return false; + target = this; + triggered_spell_id = 55111; + basepoints0 = triggerAmount*damage/100; + break; + } // Glyph of Divinity case 54939: { |