summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/join.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/public/join.js b/public/join.js
index 704868f..e51b548 100644
--- a/public/join.js
+++ b/public/join.js
@@ -148,6 +148,10 @@ function action_link(player, action, color, text) {
}
function update() {
+ if (game.scenario !== "Standard")
+ document.querySelector("h1").textContent = game.title_name + " - " + game.scenario
+ else
+ document.querySelector("h1").textContent = game.title_name
for (let i = 0; i < roles.length; ++i) {
let role = roles[i]
let role_id = "role_" + role.replace(/ /g, "_")