diff options
-rw-r--r-- | rules.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -373,7 +373,8 @@ function log_selected_move_path() { if (is_important_move(game.move_path[i]) || i === game.move_path.length-1) log(">to S" + game.move_path[i]) } else { - log("@" + game.selected.join(",") + ";" + game.move_path.join(",")) + if (game.move_path.length > 1) + log("@" + game.selected.join(",") + ";" + game.move_path.join(",")) } } |