diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-24 21:29:02 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-24 21:29:02 +0000 |
commit | a51d662dc3f303f8f46000ebca708c4d6808af12 (patch) | |
tree | 210f6fdd47a52e84bd7c71f8f664e720cc7b9b54 /rules.js | |
parent | e4a2d37c6d8719c539c746dbd097f39f6a39799b (diff) | |
download | 1989-dawn-of-freedom-a51d662dc3f303f8f46000ebca708c4d6808af12.tar.gz |
Fix typo
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(`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)} |