diff options
Diffstat (limited to 'src/server/game/Globals/ObjectMgr.cpp')
-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); } |