Revert of a Revert | ListInputModal (#82854)

This reverts commit 9acf5bd821.

MSO determined that because we use `file(...)` instead of a string
instead of an asset being locked to its initial state via a cache object
we are sending it as it is on disk every time. which means that when a
new server deployment updates the tgui it will send this new tgui code
even if the currently running DM code does not support it.
This commit is contained in:
Zephyr
2024-04-26 00:47:28 -07:00
committed by GitHub
parent cd29b123ef
commit cf4cc89902
5 changed files with 166 additions and 97 deletions
+1 -1
View File
@@ -111,7 +111,7 @@
/datum/tgui_list_input/ui_interact(mob/user, datum/tgui/ui)
ui = SStgui.try_update_ui(user, src, ui)
if(!ui)
ui = new(user, src, "ListInputModal")
ui = new(user, src, "ListInputWindow")
ui.open()
/datum/tgui_list_input/ui_close(mob/user)