Seems you can edit /components/com_jcomments/jcomments.php and replace:
$this_page = ($config->get('comments_order') == 'DESC') ? 1 : $total_pages;
with
$this_page = ($config->get('comments_order') == 'DESC') ? $total_pages : 1;
but I haven't tested this modiication.