diff --git a/code/modules/reagents/newchem/medicine.dm b/code/modules/reagents/newchem/medicine.dm index 9fccf37ef8c..5768784d61b 100644 --- a/code/modules/reagents/newchem/medicine.dm +++ b/code/modules/reagents/newchem/medicine.dm @@ -683,7 +683,7 @@ datum/reagent/life /datum/chemical_reaction/life name = "Life" id = "life" - result = "life" + result = null required_reagents = list("strange_reagent" = 1, "synthflesh" = 1, "blood" = 1) result_amount = 3 required_temp = 374 diff --git a/code/modules/reagents/newchem/other.dm b/code/modules/reagents/newchem/other.dm index 46ad69463d4..18a5142cf1a 100644 --- a/code/modules/reagents/newchem/other.dm +++ b/code/modules/reagents/newchem/other.dm @@ -131,7 +131,7 @@ datum/reagent/colorful_reagent/reaction_turf(var/turf/T, var/volume) /datum/chemical_reaction/corgium name = "corgium" id = "corgium" - result = "corgium" + result = null required_reagents = list("nutriment" = 1, "colorful_reagent" = 1, "strange_reagent" = 1, "blood" = 1) result_amount = 3 required_temp = 374 @@ -139,7 +139,7 @@ datum/reagent/colorful_reagent/reaction_turf(var/turf/T, var/volume) datum/reagent/corgium name = "Corgium" id = "corgium" - description = "Corgi is liquid form. Don't ask." + description = "Corgi in liquid form. Don't ask." reagent_state = LIQUID color = "#F9A635"