From bea187ef8d7bac55640d08fbb55dda8feda0bd04 Mon Sep 17 00:00:00 2001 From: duncathan Date: Fri, 4 Sep 2015 22:21:58 -0600 Subject: [PATCH] compiles the game properly --- code/_compile_options.dm | 2 +- code/controllers/subsystem/garbage.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/_compile_options.dm b/code/_compile_options.dm index f4fbabd06fc..a27192f7dc4 100644 --- a/code/_compile_options.dm +++ b/code/_compile_options.dm @@ -1,5 +1,5 @@ #define DEBUG //Enables byond profiling and full runtime logs - note, this may also be defined in your .dme file -#define TESTING //Enables in-depth debug messages to runtime log (used for debugging) //By using the testing("message") proc you can create debug-feedback for people with this +//#define TESTING //Enables in-depth debug messages to runtime log (used for debugging) //By using the testing("message") proc you can create debug-feedback for people with this //uncommented, but not visible in the release version) #define PRELOAD_RSC 1 /*set to: diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm index d40cd8d4b1c..3f93766c026 100644 --- a/code/controllers/subsystem/garbage.dm +++ b/code/controllers/subsystem/garbage.dm @@ -126,8 +126,8 @@ var/datum/subsystem/garbage_collector/SSgarbage A.find_references() #endif else - if(!("[A.type]" in noqdelhint)) - noqdelhint += "[A.type]" + if(!("[A.type]" in SSgarbage.noqdelhint)) + SSgarbage.noqdelhint += "[A.type]" testing("WARNING: [A.type] is not returning a qdel hint. It is being placed in the queue. Further instances of this type will also be queued.") SSgarbage.Queue(A)