diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -625,7 +625,7 @@ states.play_card ={ }, opp_event() { push_undo() - log_gap(`Played C${game.played_card} for the event`) + log_gap(`Resolves opponent event C${game.played_card}`) game.vm_infl_to_do = true game.return = game.active game.vm_event = game.played_card @@ -723,7 +723,7 @@ states.resolve_opponent_event = { game.vm_event_to_do = false game.return_state = 'resolve_opponent_event' game.vm_event = game.played_card - log(`Played C${game.played_card} for the event`) + log(`Resolves opponent event C${game.played_card}`) if (is_auto_resolve(game.played_card) || switch_events.includes(game.played_card)) { game.return = game.active goto_vm(game.vm_event)} |