summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-08-26 23:04:52 +0200
committerTor Andersson <tor@ccxvii.net>2024-08-26 23:04:52 +0200
commit9e0dfc5388ee3b8b7168706a806f0a9b3cd89b08 (patch)
treef5c2cfd4ba7b848af30b72a3b8b1b953f289d53e
parent565d9fafd28352f21ba22e8c3b1cb970e9b00a58 (diff)
downloadwashingtons-war-9e0dfc5388ee3b8b7168706a806f0a9b3cd89b08.tar.gz
Winter offensive doesn't count if britain played their last card for drm.
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index f3feaff..e6474d9 100644
--- a/rules.js
+++ b/rules.js
@@ -381,7 +381,7 @@ function is_american_militia(space) {
}
function is_american_winter_offensive() {
- if (game.move.who === WASHINGTON && game.a_hand.length === 0 && game.b_hand.length === 0)
+ if (game.move.who === WASHINGTON && game.a_hand.length === 0 && game.b_hand.length === 0 && !game.combat.b_bonus)
return true
return false
}