diff options
Diffstat (limited to 'src/game/Unit.cpp')
| -rw-r--r-- | src/game/Unit.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 884463cbc1e..1a2100efb3d 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -7621,11 +7621,18 @@ bool Unit::HandleProcTriggerSpell(Unit *pVictim, uint32 damage, AuraEffect* trig trigger_spell_id = 26470; break; } + // Unyielding Knights + case 38164: + { + if (pVictim->GetEntry() != 19457) // Proc only if you target is Grillok + return false; + break; + } // Deflection case 52420: { - if(GetHealth()*100 / GetMaxHealth() >= 35) - return false; + if (GetHealth()*100 / GetMaxHealth() >= 35) + return false; break; } |
