Warning fixes (log format in a809932f50)

This commit is contained in:
Shauren
2021-11-28 01:11:52 +01:00
parent a809932f50
commit 4978750444

View File

@@ -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);
}