From b3c795f8fc84e2f18133be150706f075a4f69a25 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Tue, 9 Feb 2016 18:33:13 -0800 Subject: [PATCH] Lets you follow any movable atom --- code/_onclick/observer.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/_onclick/observer.dm b/code/_onclick/observer.dm index 4e38804fa2f..09e205a3316 100644 --- a/code/_onclick/observer.dm +++ b/code/_onclick/observer.dm @@ -7,8 +7,8 @@ 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/machinery/bot) || istype(A,/obj/singularity) || istype(A,/obj/mecha)) + // Follow !!ALL OF THE THINGS!! + if(istype(A, /atom/movable) && A != src) ManualFollow(A) // Otherwise jump