[11509] Trigger 35541 and ranks only at success offhand hit.

This commit is contained in:
VladimirMangos 2011-05-18 23:04:24 +04:00
parent 87d6cf2367
commit b7cc436571
2 changed files with 11 additions and 1 deletions

View file

@ -3132,6 +3132,16 @@ SpellAuraProcResult Unit::HandleProcTriggerSpellAuraProc(Unit *pVictim, uint32 d
}
break;
}
case SPELLFAMILY_ROGUE:
{
if (auraSpellInfo->SpellIconID == 2260) // Combat Potency
{
if (!(procFlags & PROC_FLAG_SUCCESSFUL_OFFHAND_HIT))
return SPELL_AURA_PROC_FAILED;
}
break;
}
case SPELLFAMILY_HUNTER:
{
// Piercing Shots

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11508"
#define REVISION_NR "11509"
#endif // __REVISION_NR_H__