mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +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;
|
||||
}
|
||||
case SPELLFAMILY_HUNTER:
|
||||
{
|
||||
// Piercing Shots
|
||||
if (auraSpellInfo->SpellIconID == 3247 && auraSpellInfo->SpellVisual[0] == 0)
|
||||
{
|
||||
|
|
@ -3143,7 +3144,15 @@ SpellAuraProcResult Unit::HandleProcTriggerSpellAuraProc(Unit *pVictim, uint32 d
|
|||
if (!(procSpell->SpellFamilyFlags & UI64LIT(0x0000000000000020)))
|
||||
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;
|
||||
}
|
||||
case SPELLFAMILY_PALADIN:
|
||||
{
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue