summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index c630899..06156a5 100644
--- a/rules.js
+++ b/rules.js
@@ -625,7 +625,7 @@ states.play_card ={
},
opp_event() {
push_undo()
- log_gap(`Resolves opponent event C${game.played_card}`)
+ log_gap(`Resolved opponent event C${game.played_card}`)
game.vm_infl_to_do = true
game.return = game.active
game.vm_event = game.played_card
@@ -725,7 +725,7 @@ states.resolve_opponent_event = {
game.vm_event_to_do = false
game.return_state = 'resolve_opponent_event'
game.vm_event = game.played_card
- log(`Resolves opponent event C${game.played_card}`)
+ log(`Resolved 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)}