diff options
-rw-r--r-- | rules.js | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -1349,6 +1349,7 @@ function goto_event_card(event) { function goto_assassins() { game.state = 'assassins' game.who = ASSASSINS + game.assassins = 1 } states.assassins = { @@ -1406,11 +1407,15 @@ states.assassins_show_2 = { } function assassins_next_2() { - lift_siege(game.where) game.location[ASSASSINS] = MASYAF game.who = NOBODY - game.where = NOWHERE - end_player_turn() + if (count_friendly(game.where) > 0 && count_enemy(game.where) === 0) { + goto_regroup() + } else { + delete game.assassins + game.where = NOWHERE + end_player_turn() + } } function assassinate(who, where) { @@ -2321,7 +2326,12 @@ states.regroup = { end_regroup: function () { clear_undo() print_summary(game.active + " regrouped:", true) - if (is_winter()) + if (game.assassins) { + delete game.assassins + game.where = NOWHERE + end_player_turn() + } + else if (is_winter()) goto_winter_2() else if (is_contested_town(game.where)) next_combat_round() |