From: Steinar H. Gunderson Date: Thu, 21 Nov 2013 22:49:25 +0000 (+0100) Subject: Fix the zero-score long display again. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=5558a017d8dae308e025009f3cc013087b6be8e1 Fix the zero-score long display again. --- diff --git a/remoteglot.pl b/remoteglot.pl index 675573d..0522e52 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -1178,7 +1178,7 @@ sub long_score { if (exists($info->{'score_cp' . $mpv})) { my $score = $info->{'score_cp' . $mpv} * 0.01; if ($score == 0) { - return " 0.00"; + return "Score: 0.00"; } if ($pos->{'toplay'} eq 'B') { $score = -$score;