From a82c2a991cd7d4baafde86b14eba458a04782081 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 6 Jun 2018 19:03:42 +0200 Subject: [PATCH] Unbreak move chaining. --- www/js/remoteglot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index b3b8163..20cc1fc 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -1207,7 +1207,7 @@ var update_board = function() { break; } create_arrow(move.from, move.to, '#f66', 6, 20); - last_to = move.from; + last_to = move.to; hiddenboard.move(data['pv'][i + 1]); // To keep continuity. } -- 2.39.2