diff options
author | Kelno <kelno@users.noreply.github.com> | 2020-01-22 21:34:24 +0100 |
---|---|---|
committer | ccrs <ccrs@users.noreply.github.com> | 2020-01-22 21:34:24 +0100 |
commit | d0efd76c92084a896c87a7df5be5d879ac7f3eca (patch) | |
tree | 072efe9bab4f0d49ae7649c868d10f12dff939a6 | |
parent | 01584cb0b9fe623fdf5694b985a53aa45f9f1d30 (diff) |
Core/Maps: cosmetic correction on comment (#24096)
-rw-r--r-- | src/server/game/Maps/MapManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Maps/MapManager.cpp b/src/server/game/Maps/MapManager.cpp index 2d4ed637d0d..81fe7e32bb2 100644 --- a/src/server/game/Maps/MapManager.cpp +++ b/src/server/game/Maps/MapManager.cpp @@ -341,7 +341,7 @@ uint32 MapManager::GenerateInstanceId() ASSERT(newInstanceId < _freeInstanceIds.size()); _freeInstanceIds[newInstanceId] = false; - // Find the lowest available id starting from the current NextInstanceId (which should be the lowest according to the logic in FreeInstanceId() + // Find the lowest available id starting from the current NextInstanceId (which should be the lowest according to the logic in FreeInstanceId()) size_t nextFreedId = _freeInstanceIds.find_next(_nextInstanceId++); if (nextFreedId == InstanceIds::npos) { |