Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
<property name="PlantGrowing.LightLevelGrow" value="0"/>
<property name="PlantGrowing.LightLevelStay" value="0"/>
those properties are from the mushroom which needs no light
I adjusted the values that Dave suggested, but there's something blocking me from even placing crops underground without a direct sunlight connection. I'm hoping for a true/false value I can change to allow that.
Yep, I get a red outline to the seed placement box, like this:
https://imgur.com/QV4CBvQ
For everything but Mushrooms.
i only tried it with the yucca plant and it worked fine
I adjusted the properties you suggested under Cropsgrowingmaster, but still can't plant anything but mushrooms underground.
you need to add them to individual crops in the blocks.xml
for example
<block name="plantedYucca1">
<property name="Extends" value="cropsGrowingMaster" param1="CustomIcon"/>
<property name="CreativeMode" value="Player"/>
<property name="UnlockedBy" value="perkLivingOffTheLand,plantedYucca1Schematic"/>
<property name="Material" value="Mcorn"/>
<property name="Shape" value="ModelEntity"/>
<property name="Model" value="Entities/Plants/plant_yucca_sproutPrefab"/>
<property name="PlantGrowing.Next" value="plantedYucca2"/>
<property name="Group" value="Food/Cooking"/>
<property name="PlantGrowing.LightLevelGrow" value="0"/>
<property name="PlantGrowing.LightLevelStay" value="0"/>
<drop event="Destroy" name="plantedYucca1" count="1"/>
</block>
you should only need to do this to the planted 1 crops since the others are extended
The crops grow to their second stage, but not to their harvest stage. I added the lines of text to the next level, but that didn't seem to fix it. Advice?
Cheers!