diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1459,7 +1459,7 @@ function goto_select_jihad() { } if (game.jihad_list.length === 1) { game.jihad = game.jihad_list[0] - log("Jihad in " + game.jihad + ".") + log("Jihad in #" + game.jihad + ".") delete game.jihad_list return end_player_turn() } @@ -1476,7 +1476,7 @@ states.select_jihad = { }, town: function (where) { game.jihad = where - log("Jihad in " + game.jihad + ".") + log("Jihad in #" + game.jihad + ".") delete game.jihad_list end_player_turn() }, @@ -1685,6 +1685,7 @@ states.move_phase_event = { view.prompt = group_move_name(0) + "Choose a block to group move." gen_action_undo(view) gen_action(view, 'end_move_phase') + // TODO: can_germans_move! for (let b = 0; b <= last_block; ++b) if (can_block_land_move(b)) gen_action(view, 'block', b) |