mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[8124] Fixed removing cooldown of 23922 and ranks by 50227
Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
parent
2273f7abe0
commit
f064ef9c49
2 changed files with 9 additions and 1 deletions
|
|
@ -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:
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue