From 046f481825d3f7ab0c029bcc70acb8e06288c356 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Fri, 28 Jun 2019 09:06:13 -0500 Subject: [PATCH 1/2] Merge pull request #6231 from Heroman3003/ghostjumpfix Fixes ghost jump-to-mob --- code/modules/mob/dead/observer/observer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index a3bf0d5465e..31cbcc1f44a 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -399,7 +399,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if (!target)//Make sure we actually have a target return else - var/mob/M = getmobs()[target] //Destination mob + var/mob/M = target //Destination mob var/turf/T = get_turf(M) //Turf of the destination mob if(T && isturf(T)) //Make sure the turf exists, then move the source to that destination.