I have modified the loop.php file to add some comment stuff in. I wanted to show a comment off a link which is working just fine. Now I went to make that comment show more detail by putting the author avatar. So my code looks like this. It does display the default avatar but is should display my image which it is not.
$comments = get_comments( array(
'post_id' => $post->ID,
'number' => '1'
) );
foreach ( $comments as $comment ) {
echo get_avatar( get_the_author_meta( 'ID'), 32 );
echo $comment->comment_author . ' says: ';
echo '<hr />';
echo $comment->comment_content;
}