diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -835,6 +835,10 @@ function place_british_reinforcements(who, count, where) { if (count > 0) { logp("reinforced " + where + " with " + count + " CU"); move_british_cu(BRITISH_REINFORCEMENTS, where, count); + if (has_enemy_general(where)) + capture_enemy_general(where); + if (game.active == BRITISH && game.congress == where) + disperse_continental_congress(where); } } |