From 7f4f4c732808bca53ecfef666c179ec7feb14c51 Mon Sep 17 00:00:00 2001 From: SteelSlayer Date: Sat, 12 Sep 2020 17:46:57 -0500 Subject: [PATCH] Update cleanup.dm --- code/controllers/subsystem/cleanup.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/cleanup.dm b/code/controllers/subsystem/cleanup.dm index e572a0960ac..7f5f32734a6 100644 --- a/code/controllers/subsystem/cleanup.dm +++ b/code/controllers/subsystem/cleanup.dm @@ -22,7 +22,6 @@ SUBSYSTEM_DEF(cleanup) var/list/lists_to_clean /datum/controller/subsystem/cleanup/Initialize(start_timeofday) - . = ..() // If you want this subsystem to clean out nulls from a specific list, add it here. lists_to_clean = list( GLOB.clients = "clients", @@ -33,6 +32,7 @@ SUBSYSTEM_DEF(cleanup) GLOB.human_list = "human_list", GLOB.carbon_list = "carbon_list" ) + return ..() /datum/controller/subsystem/cleanup/fire(resumed) for(var/L in lists_to_clean)