Re: r2848 win pak128 Stops - Destination changed after reloading savegames
Reply #4 –
Imho, this is a bug in simhalt_t::suche_route, since the connections are calculated correctly - or at least displayed correctly 
Edit:I don't even understand the lines arround. My modified code
if(ziel.is_bound()) {
halthandle_t new_ziel = welt->lookup(ziel->get_init_pos())->get_halt();
if( ziel != new_ziel ) {
****ert(false);
}
}
else {
ziel = haltestelle_t::get_halt( welt, zielpos, NULL );
}
if(zwischenziel.is_bound()) {
halthandle_t new_zwischenziel = welt->lookup(zwischenziel->get_init_pos())->get_halt();
if( zwischenziel != new_zwischenziel ) {
****ert(false);
}
}
And indeed, if I delete the line you mentioned, all things are normal again. But I don't understand this...