diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-12-09 12:51:26 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-12-09 12:51:26 +0100 |
commit | 48336561d589cf2c247c794a0f78098d80b3abcf (patch) | |
tree | 8cca8f51c5e6149f548c4e3b7b7e2810f2d12129 | |
parent | b7ab205b3c5b9c37a27a55a8e6ad3bc42fc7c994 (diff) | |
download | washingtons-war-48336561d589cf2c247c794a0f78098d80b3abcf.tar.gz |
Don't allow picking up your own discarded card...
... when your opponent has run out of cards and you take turns in a row.
-rw-r--r-- | rules.js | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1283,6 +1283,7 @@ function goto_strategy_phase(new_active) { let hand = active_hand() if (hand.length === 0) { + game.did_discard_event = 0 game.active = ENEMY[game.active] hand = active_hand() if (hand.length === 0) |