aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/game/Unit.cpp8
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:
{