PC Plants

But no one touched them, and it happened before our eyes.
Planted crops do not change form (shape) after they are harvestable as that is the final form.  Do you have any mods loaded up?  If you have crops planted, the next form after harvestable should be an empty farm plot.

Code:
<!-- NOT_A_SHAPE -->
<block name="plantedPotato2">
	<property name="Extends" value="cropsGrowingMaster"/>
	<property name="CreativeMode" value="None"/>
	<property name="CustomIcon" value="plantedPotato1"/>
	<property name="Shape" value="ModelEntity"/>
	<property name="Model" value="Entities/Plants/potato_plant_growthPrefab"/>
	<property name="PlantGrowing.Next" value="plantedPotato3HarvestPlayer"/>
	<drop event="Destroy" name="plantedPotato1" count="1"/>
</block>

<!-- NOT_A_SHAPE -->
<block name="plantedPotato3HarvestPlayer">
    <property name="Extends" value="plantedPotato3Harvest"/>
    <property name="DescriptionKey" value="plantedPotato3HarvestDesc"/>
    <property name="CustomIcon" value="plantedPotato1"/>
    <property name="CreativeMode" value="None"/>
    <drop event="Harvest" name="foodCropPotato" count="2" tag="cropHarvest"/>
    <drop event="Harvest" name="foodCropPotato" prob="0.5" count="1" tag="bonusCropHarvest"/>
    <drop event="Destroy" name="plantedPotato1" count="1" prob="0.5"/>
    <!-- <property name="DowngradeBlock" value="plantedPotato1"/> -->
</block>
 
Back
Top