From: Steinar H. Gunderson Date: Sun, 12 Jun 2005 20:25:18 +0000 (+0000) Subject: Change initial seeding from alphabetical to random. X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=4ec56eb697ccac7f05591670a47dade0aae3f7ee;hp=6bdf86462be42eda23d9b1f9b08fa1f6951486f6 Change initial seeding from alphabetical to random. --- diff --git a/html/do-start-round.pl b/html/do-start-round.pl index 3684423..ff02c26 100755 --- a/html/do-start-round.pl +++ b/html/do-start-round.pl @@ -34,7 +34,7 @@ if ($num_groups == 1) { # Seed people into groups (quite preliminary for now) my $people; if ($round == 1) { - $people = ccbs::db_fetch_all($dbh, 'SELECT * FROM players WHERE player IN ( SELECT player FROM tournamentparticipation WHERE tournament=? ) ORDER BY lower(nick)', + $people = ccbs::db_fetch_all($dbh, 'SELECT * FROM players WHERE player IN ( SELECT player FROM tournamentparticipation WHERE tournament=? ) ORDER BY random()', $tournament); } else { # First of all, check that there are no null values!