From 80cb6f1531b31cee8979ccb60b64c2cc318292c8 Mon Sep 17 00:00:00 2001 From: iainp5 Date: Sat, 30 Nov 2024 00:35:55 +0000 Subject: Improve log --- rules.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 473fed9..b97db43 100644 --- a/rules.js +++ b/rules.js @@ -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 { -- cgit v1.2.3