mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 01:57:01 +00:00
* Let's try again * i forgot to stage these * Green checks. Hopefully. * Z-edit it is * That should do it (also kills Raid Edwards) * Whoopsie daisy. * Beef station * Saves pubbystation * Map fixes * Ticket machines and sorting helpers
14 lines
491 B
Plaintext
14 lines
491 B
Plaintext
//Datum used to init Auxtools debugging as early as possible
|
|
//Datum gets created in master.dm because for whatever reason global code in there gets runs first
|
|
//In case we ever figure out how to manipulate global init order please move the datum creation into this file
|
|
/datum/debugger
|
|
|
|
/datum/debugger/New()
|
|
enable_debugger()
|
|
|
|
/datum/debugger/proc/enable_debugger()
|
|
var/dll = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL")
|
|
if (dll)
|
|
LIBCALL(dll, "auxtools_init")()
|
|
enable_debugging()
|