diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-08-26 23:04:52 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-08-26 23:04:52 +0200 |
commit | 9e0dfc5388ee3b8b7168706a806f0a9b3cd89b08 (patch) | |
tree | f5c2cfd4ba7b848af30b72a3b8b1b953f289d53e | |
parent | 565d9fafd28352f21ba22e8c3b1cb970e9b00a58 (diff) | |
download | washingtons-war-9e0dfc5388ee3b8b7168706a806f0a9b3cd89b08.tar.gz |
Winter offensive doesn't count if britain played their last card for drm.
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |