From 51a70bcd4fb3f4265e07e548a6bf2339209dd4ba Mon Sep 17 00:00:00 2001 From: Jordie Date: Mon, 26 Feb 2018 07:03:04 +1100 Subject: [PATCH] Fixes first_death check (#35944) * Update blackbox.dm * Update blackbox.dm --- 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 6ac81af564..af50975570 100644 --- a/code/controllers/subsystem/blackbox.dm +++ b/code/controllers/subsystem/blackbox.dm @@ -282,7 +282,7 @@ Versioning var/last_words = sanitizeSQL(L.last_words) var/suicide = sanitizeSQL(L.suiciding) var/map = sanitizeSQL(SSmapping.config.map_name) - if(!suicide && !first_death.len) + if(!L.suiciding && !first_death.len) first_death["name"] = L.name first_death["role"] = null if(L.mind.assigned_role)