From 8707999348c7d2d135607a066ebd445e7248d8eb Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 28 Feb 2019 17:31:00 +0100 Subject: [PATCH] Adding the location var to mobs Probably should define the var before trying to modify it on death.... I promise im smart sometimes --- code/modules/mob/mob_defines.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index 32902d7d48..7600387ee5 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -7,6 +7,7 @@ var/datum/mind/mind var/stat = 0 //Whether a mob is alive or dead. TODO: Move this to living - Nodrak + var/location = null //CHOMPEDIT the variable that death() stores the place the mob died in //Not in use yet var/obj/effect/organstructure/organStructure = null