From 24a85f97abed498ab31304f0fdcac9e9a5699e8e Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Wed, 11 Oct 2017 18:04:30 -0400 Subject: [PATCH 1/2] Make SStgui actually read the html from the disk at runtime (#31464) * Make SStgui actually read the html from the disk at runtime * Remove the comment * Back to " --- code/controllers/subsystem/tgui.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/tgui.dm b/code/controllers/subsystem/tgui.dm index 52fd286eed..a9b307bc0d 100644 --- a/code/controllers/subsystem/tgui.dm +++ b/code/controllers/subsystem/tgui.dm @@ -11,7 +11,7 @@ SUBSYSTEM_DEF(tgui) var/basehtml // The HTML base used for all UIs. /datum/controller/subsystem/tgui/PreInit() - basehtml = file2text('tgui/tgui.html') // Read the HTML from disk. + basehtml = file2text("tgui/tgui.html") /datum/controller/subsystem/tgui/Shutdown() close_all_uis()