diff options
-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 { |