From: Steinar H. Gunderson Date: Sat, 6 Jan 2018 19:23:39 +0000 (+0100) Subject: Cosmetic improvement for Chess960 games. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=9538e715d31e338a2164992775d31a88feeda13f Cosmetic improvement for Chess960 games. --- diff --git a/remoteglot.pl b/remoteglot.pl index 0bfbc4c..86334a7 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -290,6 +290,7 @@ sub handle_pgn { my $pos; if (exists($tags->{'FEN'})) { $pos = Position->from_fen($tags->{'FEN'}); + $pos->{'last_move'} = 'none'; $pos->{'player_w'} = $white; $pos->{'player_b'} = $black; $pos->{'start_fen'} = $tags->{'FEN'};