*Fix Elemental Oath bonus for Elemental Focus clearcasting

*Fix Glyph of Death Grip.

--HG--
branch : trunk
This commit is contained in:
QAston
2009-06-12 14:38:22 +02:00
parent bc7a381b62
commit e5092285eb
2 changed files with 26 additions and 0 deletions

View File

@@ -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;
}
}