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.
This commit is contained in:
FalseIncarnate
2015-05-18 00:15:43 -04:00
parent e4e41ce24c
commit fe2908ef67
+1 -1
View File
@@ -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"