summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 5654997..54cfd26 100644
--- a/rules.js
+++ b/rules.js
@@ -4019,7 +4019,7 @@ function discard_card(hand) {
}
function discard_from_table(card) {
- find_card = game.table_cards.indexOf(card)
+ let find_card = game.table_cards.indexOf(card)
game.table_cards.splice(find_card, 1)
game.strategy_discard.push(card)
}