From 6e9808492eb0d302e7e3ee7edef114ff74cbb24c Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Tue, 30 May 2017 21:35:26 -0700 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 a34940ce301..0b25c29cc9c 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)