diff options
author | Rochet2 <rochet2@post.com> | 2023-09-30 18:46:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 17:46:17 +0200 |
commit | 2037749ddd1d0dd7a0113d3f86e21a3a1d2425b1 (patch) | |
tree | 34020072ddae3a238159c89731863381477ae662 /src | |
parent | 5b4b1892b43e6aec3afb32691d743761f77fdba8 (diff) |
Core/Misc: Fix log format string (#29343)
Diffstat (limited to 'src')
-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 f39ff723d78..a7822903214 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -905,7 +905,7 @@ void ObjectMgr::LoadCreatureTemplateSparring() if (noNPCDamageBelowHealthPct <= 0 || noNPCDamageBelowHealthPct > 100) { - TC_LOG_ERROR("sql.sql", "Creature (Entry: {}) has invalid NoNPCDamageBelowHealthPct (%f) defined in `creature_template_sparring`. Skipping", + TC_LOG_ERROR("sql.sql", "Creature (Entry: {}) has invalid NoNPCDamageBelowHealthPct ({}) defined in `creature_template_sparring`. Skipping", entry, noNPCDamageBelowHealthPct); continue; } |