From 556e6806f8a1fe3d06f3821838425549a681863c Mon Sep 17 00:00:00 2001 From: AnturK Date: Thu, 14 Sep 2017 12:35:05 +0200 Subject: [PATCH 1/2] Fixes ReportDeath --- code/controllers/subsystem/blackbox.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/controllers/subsystem/blackbox.dm b/code/controllers/subsystem/blackbox.dm index 301ceeac21..8143385486 100644 --- a/code/controllers/subsystem/blackbox.dm +++ b/code/controllers/subsystem/blackbox.dm @@ -185,8 +185,7 @@ SUBSYSTEM_DEF(blackbox) return if(!L || !L.key || !L.mind) return - var/turf/T = get_turf(L) - var/area/placeofdeath = get_area(T.loc) + var/area/placeofdeath = get_area(L) var/sqlname = sanitizeSQL(L.real_name) var/sqlkey = sanitizeSQL(L.ckey) var/sqljob = sanitizeSQL(L.mind.assigned_role)