From 04d675c5a4a867b2c15e2ef64d5179353fd1489e Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 20 Dec 2014 01:32:11 +0100 Subject: [PATCH] Fix base opening-stats.pl for the new computer game count. --- opening-stats.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opening-stats.pl b/opening-stats.pl index 581a0e2..def0f8f 100755 --- a/opening-stats.pl +++ b/opening-stats.pl @@ -24,7 +24,7 @@ print $line, "\n"; chomp ($line = <$chld_out>); # Actual stats. print $line, "\n"; -my ($white, $draw, $black, $opening_num, $white_avg_elo, $black_avg_elo, $num_elo, $timestamp, $pgn_file_number, $pgn_start_position, @moves) = split / /, $line; +my ($white, $draw, $black, $computer, $opening_num, $white_avg_elo, $black_avg_elo, $num_elo, $timestamp, $pgn_file_number, $pgn_start_position, @moves) = split / /, $line; # Explore one move out. for my $move (@moves) { -- 2.39.2