From bf5bcadc61530e22405fb67cac1c93ab9e08343b Mon Sep 17 00:00:00 2001 From: Krausus Date: Mon, 25 May 2015 05:17:09 -0400 Subject: [PATCH] Fixes runtime in pipe code I noticed it while blowing things up with C4! --- code/ATMOSPHERICS/pipes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ATMOSPHERICS/pipes.dm b/code/ATMOSPHERICS/pipes.dm index 7332b57e7de..894798e25c9 100644 --- a/code/ATMOSPHERICS/pipes.dm +++ b/code/ATMOSPHERICS/pipes.dm @@ -426,7 +426,7 @@ universal_underlays(node2) else universal_underlays(,dir) - universal_underlays(dir, -180) + universal_underlays(,turn(dir, -180)) /obj/machinery/atmospherics/pipe/simple/visible/universal/update_underlays() ..()