aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKelno <kelno@users.noreply.github.com>2020-01-22 21:34:24 +0100
committerShauren <shauren.trinity@gmail.com>2021-12-20 23:47:37 +0100
commitce8c83ef6f61a8202a07e1f40e83cc0615b4c48b (patch)
tree79e6bc974e09b614ca695c6f33d2999e7730b603 /src
parent606597f4f862f9e4906422f1095dc7ae022e2fb6 (diff)
Core/Maps: cosmetic correction on comment (#24096)
(cherry picked from commit d0efd76c92084a896c87a7df5be5d879ac7f3eca)
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Maps/MapManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Maps/MapManager.cpp b/src/server/game/Maps/MapManager.cpp
index 6b2e376b2dd..58ed8b496af 100644
--- a/src/server/game/Maps/MapManager.cpp
+++ b/src/server/game/Maps/MapManager.cpp
@@ -371,7 +371,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)
{