mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 22:37:02 +00:00
[11208] Restore cooldown marker work for talent 56342 and ranks
This commit is contained in:
parent
cd1465b1e4
commit
d1370941ca
2 changed files with 10 additions and 1 deletions
|
|
@ -3129,6 +3129,7 @@ SpellAuraProcResult Unit::HandleProcTriggerSpellAuraProc(Unit *pVictim, uint32 d
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case SPELLFAMILY_HUNTER:
|
case SPELLFAMILY_HUNTER:
|
||||||
|
{
|
||||||
// Piercing Shots
|
// Piercing Shots
|
||||||
if (auraSpellInfo->SpellIconID == 3247 && auraSpellInfo->SpellVisual[0] == 0)
|
if (auraSpellInfo->SpellIconID == 3247 && auraSpellInfo->SpellVisual[0] == 0)
|
||||||
{
|
{
|
||||||
|
|
@ -3143,7 +3144,15 @@ SpellAuraProcResult Unit::HandleProcTriggerSpellAuraProc(Unit *pVictim, uint32 d
|
||||||
if (!(procSpell->SpellFamilyFlags & UI64LIT(0x0000000000000020)))
|
if (!(procSpell->SpellFamilyFlags & UI64LIT(0x0000000000000020)))
|
||||||
return SPELL_AURA_PROC_FAILED;
|
return SPELL_AURA_PROC_FAILED;
|
||||||
}
|
}
|
||||||
|
// Lock and Load
|
||||||
|
else if (auraSpellInfo->SpellIconID == 3579)
|
||||||
|
{
|
||||||
|
// Check for Lock and Load Marker
|
||||||
|
if (HasAura(67544))
|
||||||
|
return SPELL_AURA_PROC_FAILED;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case SPELLFAMILY_PALADIN:
|
case SPELLFAMILY_PALADIN:
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11207"
|
#define REVISION_NR "11208"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue