[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,9 +1633,11 @@ 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;
}
// Deadly Brew

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10433"
#define REVISION_NR "10434"
#endif // __REVISION_NR_H__