// Now, find the best route from here.
ITERATE_PTR(ziel_list,i)
{
path test_path = get_path_to(ziel_list->get_element(i), ware.get_besch()->get_catg_index());
if(test_path.journey_time != 65535 && test_path.next_transfer.is_bound())
{
journey_time = test_path.journey_time;
best_destination = i;
}
}