X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=parse%2Fparse-wiki-songlist.pl;h=49934c84d4327a005fed9fce9a86d228d1108c19;hp=bfd4ccfb6a44e6f7a15a06c956912615bea0f4aa;hb=a24b59a81c140c475c5ecfd195e562cf67e5b607;hpb=5c5d48e56dcc7014a265bc61cd54378fad401c40 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];