From 52ecd6dbe137a8b5bf9d6956279204d5f76280df Mon Sep 17 00:00:00 2001 From: PsiOmegaDelta Date: Thu, 11 Feb 2016 22:39:18 +0100 Subject: [PATCH] Ghosts can now follow any /atom/movable object. --- code/_onclick/observer.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/_onclick/observer.dm b/code/_onclick/observer.dm index 5f18c2d9b87..646f624e296 100644 --- a/code/_onclick/observer.dm +++ b/code/_onclick/observer.dm @@ -17,12 +17,9 @@ if(can_reenter_corpse && mind && mind.current) if(A == mind.current || (mind.current in A)) // double click your corpse or whatever holds it reenter_corpse() // (cloning scanner, body bag, closet, mech, etc) - return // seems legit. - // Things you might plausibly want to follow - if((ismob(A) && A != src) || istype(A,/obj/singularity)) + else if(istype(A,/atom/movable)) ManualFollow(A) - // Otherwise jump else following = null