mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 23:58:07 +01:00
Fixes missing titles of the Microscope and R&D Console UIs (#57160)
This commit is contained in:
@@ -137,7 +137,7 @@ Nothing else in the console has ID requirements.
|
||||
/obj/machinery/computer/rdconsole/ui_interact(mob/user, datum/tgui/ui = null)
|
||||
ui = SStgui.try_update_ui(user, src, ui)
|
||||
if (!ui)
|
||||
ui = new(user, src, "Techweb")
|
||||
ui = new(user, src, "Techweb", name)
|
||||
ui.open()
|
||||
|
||||
/obj/machinery/computer/rdconsole/ui_assets(mob/user)
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
/obj/structure/microscope/ui_interact(mob/user, datum/tgui/ui)
|
||||
ui = SStgui.try_update_ui(user, src, ui)
|
||||
if(!ui)
|
||||
ui = new(user, src, "Microscope")
|
||||
ui = new(user, src, "Microscope", name)
|
||||
ui.open()
|
||||
|
||||
/obj/structure/microscope/ui_data(mob/user)
|
||||
|
||||
Reference in New Issue
Block a user