From 404a41850cd3205f4def6fcd960ad80338efd868 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 8 Oct 2020 06:10:07 +0200 Subject: [PATCH] [MIRROR] Rebalances pluox gen back to pre-newgas levels (#1203) * Merge pull request #54223 from Putnam3145/patch-2 Rebalances pluox gen back to pre-newgas levels * Rebalances pluox gen back to pre-newgas levels Co-authored-by: ShizCalev --- code/game/turfs/open/_open.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/turfs/open/_open.dm b/code/game/turfs/open/_open.dm index 12db5391b59..008c9ec4943 100644 --- a/code/game/turfs/open/_open.dm +++ b/code/game/turfs/open/_open.dm @@ -266,9 +266,9 @@ if (air.gases[/datum/gas/carbon_dioxide] && air.gases[/datum/gas/oxygen]) pulse_strength = min(pulse_strength, air.gases[/datum/gas/carbon_dioxide][MOLES] * 1000, air.gases[/datum/gas/oxygen][MOLES] * 2000) //Ensures matter is conserved properly air.gases[/datum/gas/carbon_dioxide][MOLES] = max(air.gases[/datum/gas/carbon_dioxide][MOLES] - (pulse_strength * 0.001),0) - air.gases[/datum/gas/oxygen][MOLES] = max(air.gases[/datum/gas/oxygen][MOLES]-(pulse_strength * 0.002),0) + air.gases[/datum/gas/oxygen][MOLES] = max(air.gases[/datum/gas/oxygen][MOLES]-(pulse_strength * 0.0005),0) air.assert_gas(/datum/gas/pluoxium) - air.gases[/datum/gas/pluoxium][MOLES] +=(pulse_strength * 0.004) + air.gases[/datum/gas/pluoxium][MOLES] +=(pulse_strength * 0.00025) air.garbage_collect() air_update_turf() if (air.gases[/datum/gas/hydrogen])