aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Commands
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2025-02-01 12:42:15 +0100
committerShauren <shauren.trinity@gmail.com>2025-02-01 12:42:15 +0100
commit4db19d3a1aa766ab2e6a5f4916df87a6326210b7 (patch)
treed76f5a084a3caaa97558bfaf471e89093a052826 /src/server/scripts/Commands
parent5b83fec88e30a93fbc3179009cefda9a7b34ee01 (diff)
Core/Commands: Fixed .debug guidlimits output for creature guids
Diffstat (limited to 'src/server/scripts/Commands')
-rw-r--r--src/server/scripts/Commands/cs_debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_debug.cpp b/src/server/scripts/Commands/cs_debug.cpp
index 7f4468dbdb9..6f1d61e451e 100644
--- a/src/server/scripts/Commands/cs_debug.cpp
+++ b/src/server/scripts/Commands/cs_debug.cpp
@@ -1686,7 +1686,7 @@ public:
static void HandleDebugGuidLimitsMap(ChatHandler* handler, Map* map)
{
handler->PSendSysMessage("Map Id: %u Name: '%s' Instance Id: %u Highest Guid Creature: " UI64FMTD " GameObject: " UI64FMTD,
- map->GetId(), map->GetMapName(), map->GetInstanceId(), uint64(map->GenerateLowGuid<HighGuid::Creature>()), uint64(map->GetMaxLowGuid<HighGuid::GameObject>()));
+ map->GetId(), map->GetMapName(), map->GetInstanceId(), uint64(map->GetMaxLowGuid<HighGuid::Creature>()), uint64(map->GetMaxLowGuid<HighGuid::GameObject>()));
}
static bool HandleDebugObjectCountCommand(ChatHandler* handler, Optional<uint32> mapId)