diff options
Diffstat (limited to 'public/join.js')
-rw-r--r-- | public/join.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/join.js b/public/join.js index 78d9137..f3279ad 100644 --- a/public/join.js +++ b/public/join.js @@ -152,9 +152,9 @@ function update() { function update_common() { if (game.scenario !== "Standard") - document.querySelector("h1").textContent = game.title_name + " - " + game.scenario + document.querySelector("h1").textContent = "#" + game.game_id + " - " + game.title_name + " - " + game.scenario else - document.querySelector("h1").textContent = game.title_name + document.querySelector("h1").textContent = "#" + game.game_id + " - " + game.title_name let message = window.message if (game.status === 0) { |