mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 04:37:00 +00:00
[10434] Add missing braces - should fix 51664 and ranks
Signed-off-by: Laise <fenrisse@gmail.com>
This commit is contained in:
parent
8dfeb61200
commit
355336f812
2 changed files with 3 additions and 1 deletions
|
|
@ -1633,8 +1633,10 @@ SpellAuraProcResult Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura
|
||||||
SpellEntry const *spellProto = (*itr)->GetSpellProto();
|
SpellEntry const *spellProto = (*itr)->GetSpellProto();
|
||||||
if (spellProto->SpellFamilyName == SPELLFAMILY_ROGUE &&
|
if (spellProto->SpellFamilyName == SPELLFAMILY_ROGUE &&
|
||||||
(spellProto->SpellFamilyFlags & UI64LIT(0x0000000000040000)))
|
(spellProto->SpellFamilyFlags & UI64LIT(0x0000000000040000)))
|
||||||
|
{
|
||||||
(*itr)->GetHolder()->RefreshHolder();
|
(*itr)->GetHolder()->RefreshHolder();
|
||||||
return SPELL_AURA_PROC_OK;
|
return SPELL_AURA_PROC_OK;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return SPELL_AURA_PROC_FAILED;
|
return SPELL_AURA_PROC_FAILED;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "10433"
|
#define REVISION_NR "10434"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue