From b9029d1bb521db2ba6b2b803ab556f34be434c3e Mon Sep 17 00:00:00 2001 From: iainp5 Date: Sun, 24 Nov 2024 18:17:23 +0000 Subject: Resolve rather than play opponent events --- rules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules.js b/rules.js index df304db..e83591a 100644 --- a/rules.js +++ b/rules.js @@ -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)} -- cgit v1.2.3