mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 10:37:03 +00:00
[11775] Fix compile with gcc for 32bit platforms.
This commit is contained in:
parent
d495a972a3
commit
a872624ce3
2 changed files with 4 additions and 4 deletions
|
|
@ -6974,7 +6974,7 @@ uint32 Unit::SpellHealingBonusDone(Unit *pVictim, SpellEntry const *spellProto,
|
|||
}
|
||||
}
|
||||
// Lifebloom
|
||||
else if (spellProto->IsFitToFamilyMask(0x0000001000000000))
|
||||
else if (spellProto->IsFitToFamilyMask(UI64LIT(0x0000001000000000)))
|
||||
{
|
||||
AuraList const& dummyList = owner->GetAurasByType(SPELL_AURA_DUMMY);
|
||||
for(AuraList::const_iterator i = dummyList.begin(); i != dummyList.end(); ++i)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "11774"
|
||||
#define REVISION_NR "11775"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue