diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-28 11:14:06 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-28 11:14:06 +0100 |
commit | 45c640a7ec67a9d2fb9513710787375ea63287a5 (patch) | |
tree | 4cf3af25bff2f5bbcf819af8d8f5447407f0f56b /rules.js | |
parent | 3cfba5b358c7912f3b44f4914bc2adc030648fc1 (diff) | |
download | 1989-dawn-of-freedom-45c640a7ec67a9d2fb9513710787375ea63287a5.tar.gz |
fix for Brought in For Questioning
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5955,7 +5955,7 @@ states.vm_brought_in_for_questioning = { discard() {
game.vm_event = discard_card(game.democrat_hand)
game.phase = 1
- if (cards[game.vm_event].side === 'C' && game.playable_cards[vm_event].playable === 1) {
+ if (cards[game.vm_event].side === 'C' && game.playable_cards[game.vm_event].playable === 1) {
game.return = game.active
if (!auto_resolve_events.includes(game.vm_event) && !switch_events.includes(game.vm_event)) {
next_player()
|