From c97d09c0ad1abe95c72ed372299427efda1d22bb Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Sat, 1 Jan 2022 10:48:03 -0800 Subject: [PATCH] Fixes bluespace pipes (I think) (#15437) --- code/game/machinery/pipe/construction.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index 5b30105409..8a084353e4 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -45,7 +45,8 @@ Buildable meters if(make_from) make_from_existing(make_from) else - pipe_type = _pipe_type + if(!initial(src.pipe_type)) + pipe_type = _pipe_type setDir(_dir) update()