Changed tournament leaderboard webpage to show top 30 instead of top 50

This commit is contained in:
CoderTim 2014-09-15 18:47:49 -04:00
parent 1b416d3e6f
commit 3d19e15225
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ for ($i = 0; $i < count($tournamentTypes); $i++)
AND gameId = $i
AND score IS NOT NULL
ORDER BY score DESC, name ASC
LIMIT 50;
LIMIT 30;
QUERY;
$result = mysqli_query($con, $query);