From f7c995499d630b90cf8ebaeae6ace9d8eccf676c Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 11 Dec 2014 01:36:00 +0100 Subject: [PATCH] Add a small hack for the start position. --- www/opening-stats.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/opening-stats.pl b/www/opening-stats.pl index d74f1ad..9b68e91 100755 --- a/www/opening-stats.pl +++ b/www/opening-stats.pl @@ -31,7 +31,7 @@ while (<$fh>) { black_avg_elo => $black_avg_elo * 1, num_elo => $num_elo * 1 }; - $opening = $openings{$opening_num}; + $opening = $openings{$opening_num} // 'A00: Start position'; } close $fh; -- 2.39.2