Round scores instead of truncating them
authorMarius Gavrilescu <marius@ieval.ro>
Fri, 21 Feb 2014 15:24:33 +0000 (17:24 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Fri, 21 Feb 2014 15:24:33 +0000 (17:24 +0200)
lib/Gruntmaster/Page/St.pm

index 02e377da57baad96bdaf98932da3f3501c007c55..5e256b1c8b51b945f3d8d9ccf63553a08f47f374 100644 (file)
@@ -24,7 +24,7 @@ sub calc_score{
        $score = ($totaltime - $timetaken) / $totaltime * $score;
        $score -= $tries / 10 * $mxscore;
        $score = $mxscore * 3 / 10 if $score < $mxscore * 3 / 10;
-       int $score
+       int $score + 0.5
 }
 
 sub _generate{
This page took 0.010666 seconds and 4 git commands to generate.