From fc2f45b71b14590f95c29ba6fe9cefec28cbcb7f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 31 May 2017 23:14:26 -0500 Subject: [PATCH] Lowers portable pump max pressure to 1013.25 --- code/modules/atmospherics/machinery/portable/pump.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/portable/pump.dm b/code/modules/atmospherics/machinery/portable/pump.dm index d3fbc38208..976827ccf1 100644 --- a/code/modules/atmospherics/machinery/portable/pump.dm +++ b/code/modules/atmospherics/machinery/portable/pump.dm @@ -1,6 +1,6 @@ #define PUMP_OUT "out" #define PUMP_IN "in" -#define PUMP_MAX_PRESSURE (ONE_ATMOSPHERE * 30) +#define PUMP_MAX_PRESSURE (ONE_ATMOSPHERE * 10) #define PUMP_MIN_PRESSURE (ONE_ATMOSPHERE / 10) #define PUMP_DEFAULT_PRESSURE (ONE_ATMOSPHERE)