diff --git a/src/game/WorldHandlers/CreatureLinkingMgr.cpp b/src/game/WorldHandlers/CreatureLinkingMgr.cpp index 552cd695..95177b77 100644 --- a/src/game/WorldHandlers/CreatureLinkingMgr.cpp +++ b/src/game/WorldHandlers/CreatureLinkingMgr.cpp @@ -331,7 +331,7 @@ CreatureLinkingInfo const* CreatureLinkingMgr::GetLinkedTriggerInformation(uint3 { // guid case 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); }