From c9e7fddeb9324857557b0db73c10b80436a4ff4f Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Fri, 21 Feb 2014 17:24:33 +0200 Subject: [PATCH] Round scores instead of truncating them --- lib/Gruntmaster/Page/St.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Gruntmaster/Page/St.pm b/lib/Gruntmaster/Page/St.pm index 02e377d..5e256b1 100644 --- a/lib/Gruntmaster/Page/St.pm +++ b/lib/Gruntmaster/Page/St.pm @@ -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{ -- 2.30.2