diff options
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index aa08549d336..ca478a42c9e 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -7425,6 +7425,16 @@ bool Unit::HandleProcTriggerSpell(Unit *pVictim, uint32 damage, AuraEffect* trig } } break; + case SPELLFAMILY_DEATHKNIGHT: + // Glyph of Death Grip + if (trigger_spell_id == 58628) + { + // remove cooldown of Death Grip + if (GetTypeId()==TYPEID_PLAYER) + ((Player*)this)->RemoveCategoryCooldown(82); + return true; + } + break; } } |