diff options
-rw-r--r-- | play.js | 1 | ||||
-rw-r--r-- | rules.js | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -765,6 +765,7 @@ function on_update() { action_button("done", "Done") action_button("end_round", "End Round") action_button("undo", "Undo") + console.log('view.power_struggle_discard', view.power_struggle_discard) } // =========================== LOG FUNCTIONS ============================================== @@ -3689,7 +3689,7 @@ function discard_card(hand) { } else { log_gap(`Discarded: P${discarded_card} V${power_cards[discarded_card].value}`) } - game.power_struggle_discard.push(discard_card) + game.power_struggle_discard.push(discarded_card) } else { log(`Discarded C${discarded_card}`) game.strategy_discard.push(discarded_card) |