Started by
Aksumite
on
Topic category: Help with Minecraft modding (Java Edition)
I am making an ant hill, and want the ants to move towards a nearby ant hill block (the rest is already figured out)
Also, can you make mobs move towards vanilla blocks?
Thanks :D
If you know how to code, this should help. Otherwise, I am not sure, but don't think it is possible in MCreator;
There are two stages to this. However, they can all be consolidated to one EntityAI class.
First, we have to find the block, we can do so using;
Iterate through the results and if one matches your block (or vanilla block as you stated) do;
Thanks that is very helpful!