diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 85815d12e..d190ae3e8 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -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) @@ -9343,7 +9343,7 @@ void Unit::CleanupsBeforeDelete() else getHostileRefManager().deleteReferences(); RemoveAllAuras(AURA_REMOVE_BY_DELETE); - GetMotionMaster()->Clear(false,true); // remove all movement generators. + GetMotionMaster()->Clear(false,true); // remove all movement generators. } WorldObject::CleanupsBeforeDelete(); } @@ -10746,7 +10746,7 @@ public: { MaNGOS::PlayerRelocationNotifier notify((Player&)m_owner); Cell::VisitAllObjects(&m_owner,notify,radius); - } + } else //if(m_owner.GetTypeId() == TYPEID_UNIT) { MaNGOS::CreatureRelocationNotifier notify((Creature&)m_owner); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 9393887db..c848c1261 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "11774" + #define REVISION_NR "11775" #endif // __REVISION_NR_H__