mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[11969] Fix compile from last commit for some compilers. Thanks to LordJz for pointing
This commit is contained in:
parent
a5a081c2ec
commit
91cec087c9
2 changed files with 2 additions and 2 deletions
|
|
@ -268,7 +268,7 @@ void CreatureLinkingHolder::AddMasterToHolder(Creature* pCreature)
|
||||||
if (itr->second == pCreature->GetObjectGuid())
|
if (itr->second == pCreature->GetObjectGuid())
|
||||||
return; // Already added
|
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
|
// Function to process actions for linked NPCs
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11968"
|
#define REVISION_NR "11969"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue