summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authoriainp5 <iain.pearce.ip@gmail.com>2024-11-24 21:29:02 +0000
committeriainp5 <iain.pearce.ip@gmail.com>2024-11-24 21:29:02 +0000
commita51d662dc3f303f8f46000ebca708c4d6808af12 (patch)
tree210f6fdd47a52e84bd7c71f8f664e720cc7b9b54 /rules.js
parente4a2d37c6d8719c539c746dbd097f39f6a39799b (diff)
download1989-dawn-of-freedom-a51d662dc3f303f8f46000ebca708c4d6808af12.tar.gz
Fix typo
Diffstat (limited to 'rules.js')
-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)}