diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index 93f78e89824..5339a74cdcc 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -165,10 +165,9 @@ Buildable meters var/pipedir = src.get_pdir()|src.get_hdir() // all possible pipe dirs including h/e# for(var/obj/machinery/atmospherics/M in src.loc) - if(M.level == src.level) // only on same level - if( (M.initialize_directions & pipedir) || (M.initialize_directions & pipedir) ) // matches at least one direction on either type of pipe - user << "There is already a pipe at that location." - return + if( (M.initialize_directions & pipedir) || (M.initialize_directions & pipedir) ) // matches at least one direction on either type of pipe + user << "There is already a pipe at that location." + return playsound(src.loc, 'Ratchet.ogg', 50, 1) // no conflicts found