summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/rules.js b/rules.js
index d7428b5..4c0d6c9 100644
--- a/rules.js
+++ b/rules.js
@@ -1927,6 +1927,13 @@ function can_take_action(c, a, ix) {
return false
}
+ if (a.type === "Bombard") {
+ // cannot Bombard last morale cube
+ let p = player_index()
+ if (game.morale[1-p] === 1)
+ return false
+ }
+
if (game.scenario === S8_BROOKLYN_HEIGHTS) {
if (c === S8_CLINTON) {
// Clinton - may only attack if both Grant and Hessians have dice on them.