[8124] Fixed removing cooldown of 23922 and ranks by 50227

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
ApoC 2009-07-05 14:30:00 +02:00
parent 2273f7abe0
commit f064ef9c49
2 changed files with 9 additions and 1 deletions

View file

@ -6767,6 +6767,14 @@ bool Unit::HandleProcTriggerSpell(Unit *pVictim, uint32 damage, Aura* triggeredB
return false; return false;
break; break;
} }
// Sword and Board
case 50227:
{
// Remove cooldown on Shield Slam
if (GetTypeId() == TYPEID_PLAYER)
((Player*)this)->RemoveSpellCategoryCooldown(1209, true);
break;
}
// Brain Freeze // Brain Freeze
case 57761: case 57761:
{ {

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "8123" #define REVISION_NR "8124"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__