Started by
Evirapo
on
Topic category: Help with Minecraft modding (Java Edition)
I made my entity breedable, and it's complete, but how do I make the baby entity age up? Send me an image of the procedures would help me
Topic category: Help with Minecraft modding (Java Edition)
I made my entity breedable, and it's complete, but how do I make the baby entity age up? Send me an image of the procedures would help me
under the “When entity spawns” procedure, create a wait [x] ticks then on server-side do command where x is the number of ticks you want to wait before the entity grows.
then within that wait block, de-spawn the baby entity and spawn an adult entity.
So it would look like this
Thank you guys!!
The problem with this solution is this not the same entity, for example if we rename the baby entity with a name tag, when he will be adult he will lose his name because it's not the same entity, someone have a solution ?