diff options
-rw-r--r-- | create.html | 1 | ||||
-rw-r--r-- | rules.js | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/create.html b/create.html index ed3e2a5..80dc869 100644 --- a/create.html +++ b/create.html @@ -14,3 +14,4 @@ Iron Bridge Delayed hit assignment </label> <dd>Fire all blocks with the same initiative before assigning hits. +</dl> @@ -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) |