Round scores instead of truncating them
[gruntmaster-page.git] / 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.010149 seconds and 4 git commands to generate.