diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-07 18:30:27 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-07 18:30:27 +0000 |
commit | 624b24699d52321b5257b89f16082e17a9a6a276 (patch) | |
tree | beb6dbfd8e4737ea8147ad6570962b4d8f428e17 | |
parent | d9ed8e9b667fa346adf7c388db95a499b8395d0c (diff) | |
download | 1989-dawn-of-freedom-624b24699d52321b5257b89f16082e17a9a6a276.tar.gz |
Fix Tyrant
-rw-r--r-- | play.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -629,7 +629,7 @@ function on_update() { ui.events[C_SYSTEMATIZATION].style.display = "none" } - if (view.persistent_events.includes(C_THE_TYRANT_IS_GONE)) { + if (view.the_tyrant_is_gone) { ui.events[C_THE_TYRANT_IS_GONE].style.display = "block" ui.events[C_THE_TYRANT_IS_GONE].style.left = ui.layout_xy[view.the_tyrant_is_gone][0] - 25 + "px" ui.events[C_THE_TYRANT_IS_GONE].style.top = ui.layout_xy[view.the_tyrant_is_gone][1] - 50 + "px" |