mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +00:00
19 lines
431 B
Plaintext
19 lines
431 B
Plaintext
/proc/auxtools_stack_trace(msg)
|
|
CRASH(msg)
|
|
|
|
/proc/enable_debugging(mode, port)
|
|
CRASH("auxtools not loaded")
|
|
|
|
/world/New()
|
|
var/debug_server = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL")
|
|
if (debug_server)
|
|
call(debug_server, "auxtools_init")()
|
|
enable_debugging()
|
|
. = ..()
|
|
|
|
/world/Del()
|
|
var/debug_server = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL")
|
|
if (debug_server)
|
|
call(debug_server, "auxtools_shutdown")()
|
|
. = ..()
|