diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-30 00:35:55 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-30 00:35:55 +0000 |
commit | 80cb6f1531b31cee8979ccb60b64c2cc318292c8 (patch) | |
tree | b2e144980a6de1ea9cfde35295cc9841f0f9520a /rules.js | |
parent | bd8d211275b20c375a23d2925e613a9cf994240f (diff) | |
download | 1989-dawn-of-freedom-80cb6f1531b31cee8979ccb60b64c2cc318292c8.tar.gz |
Improve log
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1213,7 +1213,7 @@ states.the_crowd_turns_against_ceausescu_prep = { game.ceausescu_cards = [] draw_cards(game.power_struggle_deck, game.ceausescu_cards, game.com_pwr_hand, 15, game.com_pwr_hand.length) game.temp = game.ceausescu_cards.filter(card => rallies.includes(card)).length - log(`Drew ${pluralize(game.temp, 'Rally in the Square')}.`) + log(`Drew ${pluralize(game.temp, 'Rally in the Square')}`) game.vm_available_ops = game.temp * 3 log(`Democrat takes a ${game.vm_available_ops} Op Action Round`) game.state = 'vm_the_crowd_turns_against_ceausescu' @@ -1926,7 +1926,7 @@ states.general_strike = { log(`Modified roll: ${total}`) if (total > 5) { - log('The strike is over.') + log('The strike is over') permanently_remove(C_GENERAL_STRIKE) game.persistent_events = game.persistent_events.filter(n => n !== 5) } else { @@ -4706,7 +4706,7 @@ function vm_add_x_infl() { function vm_do_add_x_infl(space) { push_undo() - log(`Added ${game.vm_available_ops} SPs in %${space}.`) + log(`Added ${game.vm_available_ops} SPs in %${space}`) if (game.active === COM) { game.comInfl[space] += game.vm_available_ops } else { |