diff options
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index a49c78bf918..8b77f5a4036 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -7533,6 +7533,14 @@ bool Unit::HandleProcTriggerSpell(Unit *pVictim, uint32 damage, AuraEffect* trig trigger_spell_id = 26470; break; } + // Deflection + case 52420: + { + if(GetHealth()*100 / GetMaxHealth() >= 35) + return false; + break; + } + // Cheat Death case 28845: { |