summaryrefslogtreecommitdiff
path: root/play.ts
diff options
context:
space:
mode:
Diffstat (limited to 'play.ts')
-rw-r--r--play.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/play.ts b/play.ts
index e192d6d..b97839b 100644
--- a/play.ts
+++ b/play.ts
@@ -381,7 +381,8 @@ function on_update() {
for (let front_id of Object.keys(view.fronts)) {
const front_data = view.fronts[front_id];
- ui.fronts[front_id].value.replaceChildren(front_data.value);
+ // ui.fronts[front_id].value.replaceChildren(front_data.value);
+ ui.fronts[front_id].value.replaceChildren(front_data.status !== null ? front_data.status : front_data.value);
ui.fronts[front_id].contributions.replaceChildren();
for(let faction_id of front_data.contributions) {
ui.fronts[front_id].contributions.appendChild(ui.tokens_on_front[front_id][faction_id]);