diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1349,6 +1349,7 @@ states.operations_remove = { if (str >= 3) { log("Military strength " + str + ".") remove_piece(p) + resume_operations_remove() } else if (game.count >= 1) { log("Military strength " + str + ".") game.who = p @@ -1360,9 +1361,8 @@ states.operations_remove = { } } else { remove_piece(p) + resume_operations_remove() } - - resume_operations_remove() }, place() { push_undo() @@ -1416,6 +1416,8 @@ function resume_operations_remove() { goto_operations_done() else if (!can_operations_remove()) goto_operations_place() + else + game.state = "operations_remove" } function goto_operations_place() { |