From fe2908ef673beb806a249c28579a563a5cc26ecf Mon Sep 17 00:00:00 2001 From: FalseIncarnate Date: Mon, 18 May 2015 00:15:43 -0400 Subject: [PATCH] Re-adds Psilocybin Check for Fruit Descriptions Since we still have psilocybin. removing it from the check entirely was unnecessary. Fruit with Psilocybin, LSD, or Space Drugs will now all properly display the "hallucinogenic" descriptor. --- code/modules/hydroponics/grown.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 619c94395ae..7489f6391fb 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -105,7 +105,7 @@ descriptors |= "radioactive" if(reagents.has_reagent("amanitin") || reagents.has_reagent("toxin")) descriptors |= "poisonous" - if(reagents.has_reagent("lsd") || reagents.has_reagent("space_drugs")) + if(reagents.has_reagent("lsd") || reagents.has_reagent("space_drugs") || reagents.has_reagent("psilocybin")) descriptors |= "hallucinogenic" if(reagents.has_reagent("styptic_powder")) descriptors |= "medicinal"