From 9e0dfc5388ee3b8b7168706a806f0a9b3cd89b08 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 26 Aug 2024 23:04:52 +0200 Subject: Winter offensive doesn't count if britain played their last card for drm. --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- cgit v1.2.3