diff options
-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: { |