I have found a quick and easy solution! If somebody else has this issue, just open the php file in models > question.php, and in line 172, change this:
if($question->qtype == ‘text’ and empty($key)) $key = ‘next’;
with this:
if($question->qtype == ‘text’ and empty($key)) $key = ‘finalize’;
And voilá! Now every text answer will lead to finalize question no matter what!