From 6e7986167929bf5e5c9d54b4bc960e1d6f3d7948 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 20 Sep 2017 01:03:17 -0500 Subject: [PATCH] [MIRROR] fix black box runtimes (#2863) * fix black box runtimes * fix black box runtimes --- code/controllers/subsystem/blackbox.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/blackbox.dm b/code/controllers/subsystem/blackbox.dm index 8143385486..2870305c3e 100644 --- a/code/controllers/subsystem/blackbox.dm +++ b/code/controllers/subsystem/blackbox.dm @@ -274,7 +274,7 @@ SUBSYSTEM_DEF(blackbox) details += "\"[deets]\"" /datum/feedback_variable/proc/get_details() - return details.Join(" | ") + return details ? details.Join(" | ") : null /datum/feedback_variable/proc/get_parsed() return list(variable,value,details.Join(" | "))