From 78fccb1e82075da2a28e09005ec5e54df54a8f47 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Tue, 31 Mar 2015 16:57:43 -0400 Subject: [PATCH] fix --- code/modules/reagents/newchem/medicine.dm | 2 +- code/modules/reagents/newchem/other.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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"