From: Steinar H. Gunderson Date: Sat, 20 Dec 2014 00:32:11 +0000 (+0100) Subject: Fix base opening-stats.pl for the new computer game count. X-Git-Url: https://git.sesse.net/?p=remoteglot-book;a=commitdiff_plain;h=04d675c5a4a867b2c15e2ef64d5179353fd1489e Fix base opening-stats.pl for the new computer game count. --- 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) {