summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 53166de..b437f6c 100644
--- a/rules.js
+++ b/rules.js
@@ -3171,7 +3171,8 @@ function end_round() {
return}
//Check if the card needs to be discarded.
- if (!game.strategy_removed.includes(game.played_card) && game.played_card > 0) {
+ let discard_check = [...game.strategy_removed, ...game.persistent_events]
+ if (!discard_check.includes(game.played_card) && game.played_card > 0) {
game.strategy_discard.push(game.played_card)
}