diff options
| author | Shauren <shauren.trinity@gmail.com> | 2021-11-11 14:46:58 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2021-11-11 14:46:58 +0100 |
| commit | cc0b2d941a0a768c22b14ca0f75dcd7913e294a9 (patch) | |
| tree | 20e85a194677140cc327a5e9dd78d2ad83b6316e /src/server/game/Globals/ObjectMgr.cpp | |
| parent | c6a9727841195237025bab96c6ce129d4291fe4c (diff) | |
Core/Misc: Corrected wrong log format message
Diffstat (limited to 'src/server/game/Globals/ObjectMgr.cpp')
| -rw-r--r-- | src/server/game/Globals/ObjectMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index 138666df811..b96aa7a0650 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -7257,7 +7257,7 @@ inline void CheckGOLinkedTrapId(GameObjectTemplate const* goInfo, uint32 dataN, { if (trapInfo->type != GAMEOBJECT_TYPE_TRAP) TC_LOG_ERROR("sql.sql", "Gameobject (Entry: %u GoType: %u) have data%d=%u but GO (Entry %u) have not GAMEOBJECT_TYPE_TRAP (%u) type.", - goInfo->entry, goInfo->type, N, dataN, dataN, GAMEOBJECT_TYPE_TRAP); + goInfo->entry, goInfo->type, N, dataN, dataN, uint32(GAMEOBJECT_TYPE_TRAP)); } } |
