summaryrefslogtreecommitdiff
path: root/ui.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui.js')
-rw-r--r--ui.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui.js b/ui.js
index 0a0c15d..58a3885 100644
--- a/ui.js
+++ b/ui.js
@@ -699,9 +699,9 @@ function on_update() {
document.getElementById("caesar_vp").textContent = game.c_vp + " VP";
document.getElementById("pompeius_vp").textContent = game.p_vp + " VP";
if (game.turn < 1)
- document.querySelector(".turn_info").textContent = `Year ${game.year}`;
+ document.getElementById("turn_info").textContent = `Year ${game.year}`;
else
- document.querySelector(".turn_info").textContent = `Turn ${game.turn} of Year ${game.year}`;
+ document.getElementById("turn_info").textContent = `Turn ${game.turn} of Year ${game.year}`;
show_action_button("#undo_button", "undo");
show_action_button("#surprise_button", "surprise");