diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2025-03-20 18:10:01 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2025-03-20 18:10:01 +0000 |
commit | 2aba9e15b5e63f952ebbc1d525665f137fc7c0a0 (patch) | |
tree | 120b509ab49c9c74d0977cb46edf3219190446dc /play.js | |
parent | 5d63fe5d4fff32b3aee92cc5734d35a36f782ca4 (diff) | |
download | 1989-dawn-of-freedom-2aba9e15b5e63f952ebbc1d525665f137fc7c0a0.tar.gz |
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -725,12 +725,14 @@ function on_update() { if (view.is_pwr_struggle) { roles.Democrat.stat.textContent = `${pluralize(view.democrat_power_hand, 'Power card')}` roles.Communist.stat.textContent = `${pluralize(view.communist_power_hand, 'Power card')}` + ui.turn_info.innerText = `Power Struggle deck: ${pluralize(view.power_struggle_deck, 'card')}` } else { roles.Democrat.stat.textContent = `${pluralize(view.democrat_hand,'card')}` roles.Communist.stat.innerText = `${pluralize(view.communist_hand, 'card')}` + ui.turn_info.innerText = `Strategy deck: ${pluralize(view.strategy_deck, 'card')}` } - ui.turn_info.innerText = `Strategy deck: ${pluralize(view.strategy_deck, 'card')}` + // UPDATE TRACK MARKERS layout_turn_marker() |