diff --git a/src/game/CreatureLinkingMgr.cpp b/src/game/CreatureLinkingMgr.cpp index d8b844939..304798496 100644 --- a/src/game/CreatureLinkingMgr.cpp +++ b/src/game/CreatureLinkingMgr.cpp @@ -268,7 +268,7 @@ void CreatureLinkingHolder::AddMasterToHolder(Creature* pCreature) if (itr->second == pCreature->GetObjectGuid()) return; // Already added - m_masterGuid.emplace(BossGuidMap::value_type(pCreature->GetEntry(), pCreature->GetObjectGuid())); + m_masterGuid.insert(BossGuidMap::value_type(pCreature->GetEntry(), pCreature->GetObjectGuid())); } // Function to process actions for linked NPCs diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index d6fb5ef84..7e2d092ec 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 "11968" + #define REVISION_NR "11969" #endif // __REVISION_NR_H__