summaryrefslogtreecommitdiff
path: root/ui.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui.js')
-rw-r--r--ui.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui.js b/ui.js
index b2ead8b..c93a9b8 100644
--- a/ui.js
+++ b/ui.js
@@ -63,6 +63,8 @@ let ui = {
function on_focus_town(evt) {
let where = evt.target.town;
let text = where;
+ if (where in SHIELDS)
+ text += " \u2014 " + SHIELDS[where].join(", ");
document.getElementById("status").textContent = text;
}