summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index b16295c..d98f4e1 100644
--- a/rules.js
+++ b/rules.js
@@ -1825,7 +1825,10 @@ function count_player_cylinders(p, r) {
}
function count_active_armies_in_region(where) {
- return count_player_armies_in_region(game.active, where);
+ let n = count_player_armies_in_region(game.active, where);
+ if (player.events.nationalism)
+ n += count_player_cylinders(game.active, where);
+ return n;
}
function count_enemy_blocks_on_border(where) {