diff options
author | Shauren <shauren.trinity@gmail.com> | 2021-11-28 01:11:52 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-11-28 01:11:52 +0100 |
commit | 49787504440e421c5e3098feb4f7c7ffb69b22dd (patch) | |
tree | 155badcae035212aa7dd449e98d5b46ec3cc9c80 | |
parent | a809932f5017c98092a02694e86e276add03f8b9 (diff) |
Warning fixes (log format in a809932f5017c98092a02694e86e276add03f8b9)
-rw-r--r-- | src/server/game/Globals/ObjectMgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index 30e504635ed..30a92203fbc 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -11109,7 +11109,7 @@ void ObjectMgr::LoadJumpChargeParams() if (sCurveStore.LookupEntry(fields[5].GetInt32())) progressCurveId = fields[5].GetInt32(); else - TC_LOG_ERROR("sql.sql", "Table `jump_charge_params` references non-existing progress Curve: %d for id, ignored.", + TC_LOG_ERROR("sql.sql", "Table `jump_charge_params` references non-existing progress Curve: %d for id %d, ignored.", fields[4].GetInt32(), id); } @@ -11118,7 +11118,7 @@ void ObjectMgr::LoadJumpChargeParams() if (sCurveStore.LookupEntry(fields[6].GetInt32())) parabolicCurveId = fields[6].GetInt32(); else - TC_LOG_ERROR("sql.sql", "Table `jump_charge_params` references non-existing parabolic Curve: %d for id, ignored.", + TC_LOG_ERROR("sql.sql", "Table `jump_charge_params` references non-existing parabolic Curve: %d for id %d, ignored.", fields[6].GetInt32(), id); } |