diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -857,6 +857,8 @@ function place_american_reinforcements(who, count, where) { } logp("reinforced " + where + " with " + count + " CU"); place_american_cu(where, count); + if (has_enemy_general(where)) + capture_enemy_general(where); } function place_french_reinforcements(who, where) { @@ -2156,6 +2158,9 @@ function gen_move_general() { if (to != from) { if (is_non_blockaded_port(to)) { if (!has_american_pc(to) && !has_american_or_french_cu(to)) { + // don't leave alone + if (alone && has_enemy_general(to)) + continue // TODO: duplicate action if can move by normal road gen_action('move', to); } |