X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=remoteglot.pl;h=4ccdac7e4b873d69143194795f2e6f71e0715806;hb=ad566e0ccb947e1c2e3e81580edacaf88765701b;hp=a924701b3ec4c19606d3e9477796bd7d677f7a5d;hpb=2337cdf336feef3c82060eb882a73f013ef8c341;p=remoteglot-book diff --git a/remoteglot.pl b/remoteglot.pl index a924701..4ccdac7 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -694,10 +694,10 @@ sub score_sort_key { my $score; if ($mate > 0) { # Side to move mates - $mate = 99999 - $mate; + $score = 99999 - $mate; } else { # Side to move is getting mated (note the double negative for $mate) - $mate = -99999 - $mate; + $score = -99999 - $mate; } if ($invert) { $score = -$score;