When the planted pear bushes grow into a planted pear tree, this one dissapear.
Quick fix:
Search this lines on items.xml
- Code: Select all
<plantedpeartree>
<name esES="Peral plantado">Planted pear tree</name>
<habitat>grass1</habitat>
<locked>true</locked>
<action>qchopfruittrees</action>
<action>qharvestppear</action>
</plantedpeartree>
And add the line
- Code: Select all
<habitat>humus</habitat>
after this one
- Code: Select all
<habitat>grass1</habitat>
So, they have to look like this:
- Code: Select all
<plantedpeartree>
<name esES="Peral plantado">Planted pear tree</name>
<habitat>grass1</habitat>
<habitat>humus</habitat>
<locked>true</locked>
<action>qchopfruittrees</action>
<action>qharvestppear</action>
</plantedpeartree>
Sorry for the inconvenience.
Edit: One more change has to be made:
Locate:
- Code: Select all
<plantedharvestedpeartree>
<name esES="Peral plantado">Planted pear tree</name>
<habitat>grass1</habitat>
<habitat>humus</habitat>
<maxAge>1d2880+6400</maxAge>
<maxAgeItem>peartree</maxAgeItem>
<action>qchop</action>
</plantedharvestedpeartree>
and change the <maxAgeItem> tag by:
- Code: Select all
<maxAgeItem>plantedpeartree</maxAgeItem>
So, the result:
- Code: Select all
<plantedharvestedpeartree>
<name esES="Peral plantado">Planted pear tree</name>
<habitat>grass1</habitat>
<habitat>humus</habitat>
<maxAge>1d2880+6400</maxAge>
<maxAgeItem>plantedpeartree</maxAgeItem>
<action>qchop</action>
</plantedharvestedpeartree>

