From 2d684c88be65f1a79d005bff36aef80c0912be9a Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Fri, 9 Oct 2020 00:06:01 +0200 Subject: [PATCH] readds a accidentally removed thing Apparently, someone accidentally removed the functionality of being able to inject beakers in heaters without having to remove them, which is pretty required fore more complex reactions. This readds that. Also tweaks the Ion release of the zeolite reaction a bit (-0.2 > -0.15) --- .../reagents/chemistry/machinery/chem_heater.dm | 10 ++++++++++ .../code/modules/reagents/chemistry/recipes/fermi.dm | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/machinery/chem_heater.dm b/code/modules/reagents/chemistry/machinery/chem_heater.dm index 28f0b2366a..a25677d737 100644 --- a/code/modules/reagents/chemistry/machinery/chem_heater.dm +++ b/code/modules/reagents/chemistry/machinery/chem_heater.dm @@ -83,6 +83,16 @@ updateUsrDialog() update_icon() return + + if(beaker) + if(istype(I, /obj/item/reagent_containers/dropper)) + var/obj/item/reagent_containers/dropper/D = I + D.afterattack(beaker, user, 1) + return + if(istype(I, /obj/item/reagent_containers/syringe)) + var/obj/item/reagent_containers/syringe/S = I + S.afterattack(beaker, user, 1) + return return ..() /obj/machinery/chem_heater/on_deconstruction() diff --git a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm index 75086ac690..5241768813 100644 --- a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm +++ b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm @@ -604,7 +604,7 @@ CurveSharpT = 5 CurveSharppH = 3 ThermicConstant = 15 - HIonRelease = -0.2 + HIonRelease = -0.15 RateUpLim = 4 PurityMin = 0.5 //Good luck. FermiChem = TRUE