diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-08-21 01:16:41 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-08-21 01:17:42 +0200 |
commit | eb4213121a84a8002d3ae914caec91040bb323cb (patch) | |
tree | b9d7cf117f42b97a4df29c84b732e1a2daa2debf | |
parent | 06e15c91dc6b80397af4cd1165f367a6a1656ae5 (diff) | |
download | washingtons-war-eb4213121a84a8002d3ae914caec91040bb323cb.tar.gz |
fix winter campaign
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -393,7 +393,7 @@ function is_american_militia(space) { } function is_american_winter_offensive() { - if (game.move.who === WASHINGTON && game.a_hand.length === 0) + if (game.move.who === WASHINGTON && game.a_hand.length === 0 && game.b_hand.length === 0) return true return false } |