Hey,
I'm trying to make a custom zombie right now and was trying to spawn it.
It doesn't move at all and can't be attacked. I even tried it with a normal zombie, but still, it doesn't move.
EntityZombie zombie = new EntityZombie(worldIn);
zombie.setPositionAndRotation(pos.getX(), pos.getY() + 1, pos.getZ(), 0, 0);
worldIn.spawnEntity(zombie);
This is how I'm doing it
Would be nice if you helped me