From d60c7a177bf7ea595f4fd770014fa29903fd01d5 Mon Sep 17 00:00:00 2001 From: xxalpha Date: Mon, 4 May 2015 21:12:16 +0100 Subject: [PATCH] Modified a pipenet error string. --- code/ATMOSPHERICS/datum_pipeline.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ATMOSPHERICS/datum_pipeline.dm b/code/ATMOSPHERICS/datum_pipeline.dm index f2c7f6b5f8e..d0379e999c5 100644 --- a/code/ATMOSPHERICS/datum_pipeline.dm +++ b/code/ATMOSPHERICS/datum_pipeline.dm @@ -70,7 +70,7 @@ var/pipenetwarnings = 10 if(item.parent) if(pipenetwarnings > 0) - error("[item.type] added to a pipenet while still having one. ([item.x], [item.y], [item.z])") + error("[item.type] added to a pipenet while still having one. (pipes leading to the same spot stacking in one turf) Nearby: ([item.x], [item.y], [item.z])") pipenetwarnings -= 1 if(pipenetwarnings == 0) error("further messages about pipenets will be supressed")