summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/rules.js b/rules.js
index b00798d..62f6dca 100644
--- a/rules.js
+++ b/rules.js
@@ -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);
}
}