From e6392ee5d1610707622b0b41fd57faa00a8dd635 Mon Sep 17 00:00:00 2001 From: Yoshax Date: Tue, 19 Apr 2016 18:08:08 +0100 Subject: [PATCH] Adjusts check to fix double click moving as observer --- code/_onclick/observer.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/_onclick/observer.dm b/code/_onclick/observer.dm index 646f624e29..f34a68a742 100644 --- a/code/_onclick/observer.dm +++ b/code/_onclick/observer.dm @@ -17,8 +17,10 @@ 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 + // Things you might plausibly want to follow - else if(istype(A,/atom/movable)) + if(istype(A,/atom/movable)) ManualFollow(A) // Otherwise jump else