Skip to content

Commit

Permalink
[11969] Fix compile from last commit for some compilers. Thanks to Lo…
Browse files Browse the repository at this point in the history
…rdJz for pointing
  • Loading branch information
Schmoozerd committed Apr 20, 2012
1 parent 839d83c commit 6904541
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/game/CreatureLinkingMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11968"
#define REVISION_NR "11969"
#endif // __REVISION_NR_H__

0 comments on commit 6904541

Please sign in to comment.