From e6345dd32a56ca7601bdf7b5998bcd32cced07ee Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Mon, 21 Jun 2021 07:55:44 -0700 Subject: [PATCH] Hopefully fixes whatever requires SHOULD_NOT_SLEEP to be commented out --- code/controllers/subsystem/processing/processing.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/processing/processing.dm b/code/controllers/subsystem/processing/processing.dm index f5a423b353..661eafc2a5 100644 --- a/code/controllers/subsystem/processing/processing.dm +++ b/code/controllers/subsystem/processing/processing.dm @@ -47,5 +47,5 @@ SUBSYSTEM_DEF(processing) * If you override this do not call parent, as it will return PROCESS_KILL. This is done to prevent objects that dont override process() from staying in the processing list */ /datum/proc/process(delta_time) - // SHOULD_NOT_SLEEP(TRUE) + SHOULD_NOT_SLEEP(TRUE) return PROCESS_KILL