From 48336561d589cf2c247c794a0f78098d80b3abcf Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 9 Dec 2024 12:51:26 +0100 Subject: Don't allow picking up your own discarded card... ... when your opponent has run out of cards and you take turns in a row. --- rules.js | 1 + 1 file changed, 1 insertion(+) diff --git a/rules.js b/rules.js index c287d2a..5967414 100644 --- a/rules.js +++ b/rules.js @@ -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) -- cgit v1.2.3