From: Steinar H. Gunderson Date: Wed, 27 Dec 2023 10:24:26 +0000 (+0100) Subject: Update the list of manual move extensions even if the FEN did not change. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=3ca44b02eb1e3ffc751ad046ffa832d5ffe95591 Update the list of manual move extensions even if the FEN did not change. This makes it easier to see how far behind the feed is. --- diff --git a/remoteglot.pl b/remoteglot.pl index 663b2d5..08e03ea 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -268,6 +268,7 @@ sub handle_position { for my $key ('white_clock', 'black_clock', 'white_clock_target', 'black_clock_target') { $pos_calculating->{$key} //= $pos->{$key}; } + $pos_calculating->{'extra_moves'} = $pos->{'extra_moves'}; return; }