diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index d5b167f31..01a40a4dc 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -5972,6 +5972,8 @@ void Spell::EffectSummonCritter(uint32 i) critter->AIM_Initialize(); critter->InitPetCreateSpells(); // e.g. disgusting oozeling has a create spell as critter... critter->SelectLevel(critter->GetCreatureInfo()); // some summoned creaters have different from 1 DB data for level/hp + critter->SetUInt32Value(UNIT_NPC_FLAGS, critter->GetCreatureInfo()->npcflag); + // some mini-pets have quests // set timer for unsummon int32 duration = GetSpellDuration(m_spellInfo); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 7f429e8b8..994d21183 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 "7753" + #define REVISION_NR "7754" #endif // __REVISION_NR_H__