From fda0667650f98f33a76a2880126bd9749aab4b99 Mon Sep 17 00:00:00 2001 From: VelardAmakar Date: Sat, 1 Mar 2014 08:53:34 -0500 Subject: [PATCH] Cryo should no longer give ten times the normal reagents to patients. --- code/game/machinery/cryo.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/cryo.dm b/code/game/machinery/cryo.dm index 76cfa381712..34a2f8a4f8a 100644 --- a/code/game/machinery/cryo.dm +++ b/code/game/machinery/cryo.dm @@ -220,7 +220,7 @@ var/has_clonexa = occupant.reagents.get_reagent_amount("clonexadone") >= 1 var/has_cryo_medicine = has_cryo || has_clonexa if(beaker && !has_cryo_medicine) - beaker.reagents.trans_to(occupant, 1, 10) + beaker.reagents.trans_to(occupant, 1, 1) beaker.reagents.reaction(occupant) /obj/machinery/atmospherics/unary/cryo_cell/proc/heat_gas_contents()