[10434] Add missing braces - should fix 51664 and ranks

Signed-off-by: Laise <fenrisse@gmail.com>
This commit is contained in:
porteyoplait 2010-09-02 16:42:37 +03:00 committed by Laise
parent 8dfeb61200
commit 355336f812
2 changed files with 3 additions and 1 deletions

View file

@ -1633,8 +1633,10 @@ SpellAuraProcResult Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura
SpellEntry const *spellProto = (*itr)->GetSpellProto();
if (spellProto->SpellFamilyName == SPELLFAMILY_ROGUE &&
(spellProto->SpellFamilyFlags & UI64LIT(0x0000000000040000)))
{
(*itr)->GetHolder()->RefreshHolder();
return SPELL_AURA_PROC_OK;
}
}
return SPELL_AURA_PROC_FAILED;
}