From: Steinar H. Gunderson Date: Sun, 13 Feb 2005 16:43:26 +0000 (+0000) Subject: difficulty -> difficult (spelling fix) X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=a24b59a81c140c475c5ecfd195e562cf67e5b607;hp=5c5d48e56dcc7014a265bc61cd54378fad401c40 difficulty -> difficult (spelling fix) --- diff --git a/parse/parse-wiki-songlist.pl b/parse/parse-wiki-songlist.pl index bfd4ccf..49934c8 100644 --- a/parse/parse-wiki-songlist.pl +++ b/parse/parse-wiki-songlist.pl @@ -38,10 +38,10 @@ while (<>) { for my $t (['single', 'beginner', $sb], ['single', 'standard', $ss], - ['single', 'difficulty', $sd], + ['single', 'difficult', $sd], ['single', 'expert', $se], ['double', 'standard', $ds], - ['double', 'difficulty', $dd], + ['double', 'difficult', $dd], ['double', 'expert', $de]) { printf "INSERT INTO songratings (song,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE title='%s'),'%s','%s',%u);\n", $songname, $t->[0], $t->[1], $t->[2];