Even when given time and in any game mode the rabbits in this java version will not do the head bobbing animation as shown in the latest minecraft video
Environment
Flat ground and in survival and creative
Comments 3
Can confirm. Happens because it can only play if the rabbit has been leashed, but is not currently leashed.
Suggested fix (in net.minecraft.world.entity.animal.rabbit.Rabbit):
private boolean shouldPlayIdleAnimation() {
return this.idleAnimationTimeout <= 0 && !this.isLeashed() && !rabbit.isNoAi();
}
I was able to see them for a short period, but after some time they stopped doing it and I never saw it in game again. It’s probably in there somewhere, but it’s probably broken to a point that it is practically nonexistent.