From 97584b397465e3507b032823d0ebe5e0b4527a4a Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 21 Jan 2023 00:31:45 +0100 Subject: Show number of held cards. --- play.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'play.js') diff --git a/play.js b/play.js index f4d8215..079999c 100644 --- a/play.js +++ b/play.js @@ -567,6 +567,9 @@ const ui = { hand_panel: document.getElementById("hand_panel"), hand: document.getElementById("hand"), + held1: document.querySelector("#role_Teutons .role_held"), + held2: document.querySelector("#role_Russians .role_held"), + capabilities1: document.getElementById("capabilities1"), capabilities2: document.getElementById("capabilities2"), command: document.getElementById("command"), @@ -1736,6 +1739,9 @@ function on_update() { else ui.elr2.classList = `marker circle enemy_lords_removed russian hide` + ui.held1.textContent = `${view.held1} Held` + ui.held2.textContent = `${view.held2} Held` + update_plan() update_cards() -- cgit v1.2.3