diff options
-rw-r--r-- | rules.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -638,6 +638,7 @@ states.resolve_opponent_event = { game.return_state = 'resolve_opponent_event'
if (auto_resolve_events.includes(game.played_card) || switch_events.includes(game.played_card)) {
game.return = game.active
+ log(`C${game.played_card}`)
goto_vm(game.played_card)}
else {
if (game.active === DEM) {
@@ -646,6 +647,7 @@ states.resolve_opponent_event = { game.return = DEM
}
next_player()
+ log(`C${game.played_card}`)
goto_vm(game.played_card)
}
},
@@ -1692,7 +1694,6 @@ states.general_strike = { if (scoring_cards.includes(game.played_card)) {
log(`Played C${card}`)
game.return_state = 'general_strike'
- game.phase = 1
goto_vm(card)
return
}
|