From e4e41ce24c8f0a1cb448bcb5bdb8501902ddf8f8 Mon Sep 17 00:00:00 2001 From: FalseIncarnate Date: Sun, 17 May 2015 21:38:32 -0400 Subject: [PATCH] Fruit Description Fix Fixes checks for old chems to use ones for new chems. Some of these chemicals currently aren't in any fruits (like juices) but may appear once we expand the chem list for random seeds. Will update the descriptions to account for new chems at such time that goof's PR is finished if he doesn't include it. --- code/modules/hydroponics/grown.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 6e326718ca6..619c94395ae 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -89,7 +89,7 @@ var/list/descriptors = list() if(reagents.has_reagent("sugar") || reagents.has_reagent("cherryjelly") || reagents.has_reagent("honey") || reagents.has_reagent("berryjuice")) descriptors |= "sweet" - if(reagents.has_reagent("anti_toxin")) + if(reagents.has_reagent("charcoal")) descriptors |= "astringent" if(reagents.has_reagent("frostoil")) descriptors |= "numbing" @@ -103,17 +103,17 @@ descriptors |= "sweet-sour" if(reagents.has_reagent("radium") || reagents.has_reagent("uranium")) descriptors |= "radioactive" - if(reagents.has_reagent("amatoxin") || reagents.has_reagent("toxin")) + if(reagents.has_reagent("amanitin") || reagents.has_reagent("toxin")) descriptors |= "poisonous" - if(reagents.has_reagent("psilocybin") || reagents.has_reagent("space_drugs")) + if(reagents.has_reagent("lsd") || reagents.has_reagent("space_drugs")) descriptors |= "hallucinogenic" - if(reagents.has_reagent("bicaridine")) + if(reagents.has_reagent("styptic_powder")) descriptors |= "medicinal" if(reagents.has_reagent("gold")) descriptors |= "shiny" if(reagents.has_reagent("lube")) descriptors |= "slippery" - if(reagents.has_reagent("pacid") || reagents.has_reagent("sacid")) + if(reagents.has_reagent("facid") || reagents.has_reagent("sacid")) descriptors |= "acidic" if(seed.get_trait(TRAIT_JUICY)) descriptors |= "juicy"