change the dynamic time limit averaging from row-count to the minimum times thing

This commit is contained in:
rtldg 2021-09-28 02:14:52 +00:00
parent 1dd2b0ede8
commit 6b2f709320

View File

@ -241,7 +241,7 @@ public void SQL_GetMapTimes(Database db, DBResultSet results, const char[] error
if(iRows >= gCV_MinimumTimes.IntValue)
{
float fTimeSum = results.FetchFloat(1);
float fAverage = (fTimeSum / 60 / iRows);
float fAverage = (fTimeSum / 60 / gCV_MinimumTimes.IntValue);
if(fAverage <= 1)
{