Farmland become dirt even with my crops on it when they are not irrigated

Started by Spleet2.0 on

Topic category: Help with Minecraft modding (Java Edition)

Joined Jun 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Farmland become dirt even with my crops on it when they are not irrigated

I created crops and set the property to PLANTS. However, when the farmlands on which they grow are not irrigated, they turn back into land because they do not consider my crops as crops.

 

 I do not know how to do.

Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Do you have a crop in the…
Fri, 11/10/2023 - 10:03

Do you have a crop in the form of a block?

If so, then the crop must be a plant!

Joined Jun 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I put crop model and plants…
Fri, 11/10/2023 - 15:28

I put crop model and plants material but that didn't change anything

Joined Jun 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
In the Minecraft code, non…
Fri, 11/10/2023 - 15:30

In the Minecraft code, non-irrigated farmlands revert to dirt if they are not cultivated. They therefore do not consider my block as a crop

Joined Apr 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Your crop needs to be a…
Fri, 11/10/2023 - 15:41

Your crop needs to be a plant element, not a block set to plant material.  I think there is some additional code that plants have the blocks do not, even when set to plant material type.

Joined May 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
it needs to be a plant…
Fri, 11/10/2023 - 17:49

it needs to be a plant element

Joined Jun 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
However, the plant element…
Fri, 11/10/2023 - 20:52

However, the plant element does not have the tick property like the block, and I need it for growth.

Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Well, if you know a bit Java…
Sat, 11/11/2023 - 04:41

Well, if you know a bit Java code, then you can use the base CropBlock.
Block the code of your block (must be a plant!)

Joined Jun 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I know very little java
Sat, 11/11/2023 - 09:17

I know very little java

Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
In this case, you can search…
Sat, 11/11/2023 - 09:58

In this case, you can search YOUTUBE for tutorial videos about MCreator