From 95533dd3cb071ffefa865383fa5e04b6742d770f Mon Sep 17 00:00:00 2001 From: Yoshax Date: Wed, 21 Sep 2016 17:16:51 +0100 Subject: [PATCH] Long, time-consuming not one-line fix --- code/modules/ventcrawl/ventcrawl_atmospherics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/ventcrawl/ventcrawl_atmospherics.dm b/code/modules/ventcrawl/ventcrawl_atmospherics.dm index 7989f033159..bb2d1211254 100644 --- a/code/modules/ventcrawl/ventcrawl_atmospherics.dm +++ b/code/modules/ventcrawl/ventcrawl_atmospherics.dm @@ -24,7 +24,7 @@ . = ..() /obj/machinery/atmospherics/relaymove(mob/living/user, direction) - if(!(direction & initialize_directions)) //can't go in a way we aren't connecting to + if(user.loc != src || !(direction & initialize_directions)) //can't go in a way we aren't connecting to return ventcrawl_to(user,findConnecting(direction, user.ventcrawl_layer),direction)