From 71081b29401ab637c849b5aa5bccddfb205a4fca Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 8 Apr 2022 16:57:11 +0200 Subject: [PATCH] [MIRROR] Brings stationary tank pressure limit up to canister level and makes them cheaper [MDB IGNORE] (#12610) * Brings stationary tank pressure limit up to canister level (#65987) and makes them cheaper * Brings stationary tank pressure limit up to canister level and makes them cheaper Co-authored-by: Emmett Gaines --- code/modules/atmospherics/machinery/components/tank.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/atmospherics/machinery/components/tank.dm b/code/modules/atmospherics/machinery/components/tank.dm index b133a3a964d..ac3ebde272c 100644 --- a/code/modules/atmospherics/machinery/components/tank.dm +++ b/code/modules/atmospherics/machinery/components/tank.dm @@ -1,4 +1,4 @@ -#define TANK_PLATING_SHEETS 20 +#define TANK_PLATING_SHEETS 12 /obj/machinery/atmospherics/components/tank icon = 'icons/obj/atmospherics/stationary_canisters.dmi' @@ -34,7 +34,7 @@ /// The volume of the gas mixture var/volume = 2500 //in liters /// The max pressure of the gas mixture before damaging the tank - var/max_pressure = 20000 + var/max_pressure = 46000 /// The typepath of the gas this tank should be filled with. var/gas_type = null