Yes, it’s only allow 1 sticky post by default, you can edit content-loop.php manually, find the following codes
$args = array(
'posts_per_page' => 1,
'post__in' => $sticky,
'ignore_sticky_posts' => 1
);
Change posts_per_page to more than 1.
I will also cancel the number limited in the later version.
Thanks