summaryrefslogtreecommitdiff
path: root/play.js
diff options
context:
space:
mode:
Diffstat (limited to 'play.js')
-rw-r--r--play.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/play.js b/play.js
index 50651a4..c6710ae 100644
--- a/play.js
+++ b/play.js
@@ -1552,8 +1552,13 @@ function on_update() {
ui.held_york.textContent = `${view.held_y} Held`
ui.held_lancaster.textContent = `${view.held_l} Held`
- ui.victory_check.style.top = (track_xy[view.victory_check][1]) + "px"
- ui.victory_check.style.left = (track_xy[view.victory_check][0]) + "px"
+ if (view.victory_check <= 45) {
+ ui.victory_check.style.display = "block"
+ ui.victory_check.style.top = (track_xy[view.victory_check][1]) + "px"
+ ui.victory_check.style.left = (track_xy[view.victory_check][0]) + "px"
+ } else {
+ ui.victory_check.style.display = "none"
+ }
let town = count_favour(TOWN)
ui.town.style.top = (track_xy[Math.abs(town)][1]) + "px"