Merge pull request #12139 from Citadel-Station-13/kevinz000-patch-8

Fixes VSC debugger
This commit is contained in:
Putnam3145
2020-05-07 10:51:04 -07:00
committed by GitHub
+3 -2
View File
@@ -8,8 +8,9 @@ GLOBAL_LIST(topic_status_cache)
//This happens after the Master subsystem new(s) (it's a global datum)
//So subsystems globals exist, but are not initialised
/world/New()
if(fexists("byond-extools.dll"))
call("byond-extools.dll", "maptick_initialize")()
var/extools = world.GetConfig("env", "EXTOOLS_DLL") || "./byond-extools.dll"
if (fexists(extools))
call(extools, "maptick_initialize")()
enable_debugger()
world.Profile(PROFILE_START)