Started by
proxerater
on
Topic category: Help with MCreator software
Ok, so this is complicated but I need some insight from somebody who knows what there doing; cuz I don't.
I am trying to make growable crop, following this video : https://www.youtube.com/watch?v=721Sgn77OE0&t
I am stuck at the first of the procedures. The procedure itself looks fine, but how do I attach it to the seed item itself? It doesn't say in the tutorial, and I really need to know. I have tried applying the seed procedure to "right click on block", like any assumptious human would but it failed horribly; only deleting the block beneath it and placing the crop, not actually planting it on farmland like it is suppose to. PLEASE HELP, I have been stuck for days on end.
(6:16 in the video procedure)
So the plant is planted as it should, right? The only problem is that it is spawned 1 block too low for you.
The issue can be:
1. You forgot to add y+1 when spawning in the crop. So instead of planting the crop above the block you are looking at, you are spawning it at the location the block is at, thus replacing it. Make sure you have:
"Place [crop] at x, y+1, z" and not "Place [crop] at x, y, z".
2. The problem can also be that the block you are trying to spawn it on, possibly has a material that might case it to replace: https://minecraft.gamepedia.com/Materials
But I think it's the 1st one.
Weirdly enough, It was already on y + 1. I tested it on y + 2 and and it placed it a block higher, (duh) but heres the odd part; When I reverted it back to one it worked perfectly fine. Thank you for your help, really awesome to see active mods!