Add missing iterator
This commit is contained in:
parent
3825dcc9b9
commit
cdb0945e33
@ -331,7 +331,7 @@ CreatureLinkingInfo const* CreatureLinkingMgr::GetLinkedTriggerInformation(uint3
|
|||||||
{
|
{
|
||||||
// guid case
|
// guid case
|
||||||
CreatureLinkingMapBounds bounds = m_creatureLinkingGuidMap.equal_range(lowGuid);
|
CreatureLinkingMapBounds bounds = m_creatureLinkingGuidMap.equal_range(lowGuid);
|
||||||
for (CreatureLinkingMap::const_iterator iter = bounds.first; iter != bounds.second;)
|
for (CreatureLinkingMap::const_iterator iter = bounds.first; iter != bounds.second; ++iter)
|
||||||
{
|
{
|
||||||
return &(iter->second);
|
return &(iter->second);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user