diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-08-30 12:19:22 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-08-30 12:19:22 +0200 |
commit | 0e04985adb759e257604cc14226d79fbc9b127a8 (patch) | |
tree | 60197aed412eca6eaa6779741d121d8137921159 | |
parent | 0e01de6c9d9fad9729978bc94842dc7f8793bdf2 (diff) | |
download | washingtons-war-0e04985adb759e257604cc14226d79fbc9b127a8.tar.gz |
fix american offensive check again
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -379,7 +379,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 && !game.combat.b_bonus) + if (game.move.who === WASHINGTON && game.a_hand.length === 0 && game.b_hand.length === 0 && !game.combat.a_bonus && !game.combat.b_bonus) return true return false } |