diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 8877fbbda..96d1d8c8a 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -6134,8 +6134,16 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu // Earth Shield if (dummySpell->SpellFamilyFlags & UI64LIT(0x0000040000000000)) { - basepoints0 = triggerAmount; target = this; + basepoints0 = triggerAmount; + + // Glyph of Earth Shield + if (Aura* aur = GetDummyAura(63279)) + { + int32 aur_mod = aur->GetModifier()->m_amount; + basepoints0 = int32(basepoints0 * (aur_mod + 100.0f) / 100.0f); + } + triggered_spell_id = 379; break; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 9a04424d9..ade6e9a62 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 "8524" + #define REVISION_NR "8525" #endif // __REVISION_NR_H__