diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 43f2f0a92..9b8bb62a9 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -5824,6 +5824,16 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu triggered_spell_id = 32747; break; } + // Glyph of Rejuvenation + case 54754: + { + // less 50% health + if (pVictim->GetMaxHealth() < 2 * pVictim->GetHealth()) + return false; + basepoints0 = triggerAmount * damage / 100; + triggered_spell_id = 54755; + break; + } } // Eclipse if (dummySpell->SpellIconID == 2856) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 00873693e..8b229dde8 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9138" + #define REVISION_NR "9139" #endif // __REVISION_NR_H__