(svn r6366) -Fix (FS#324): when opening a scenario, the date was set 1920 years into the future.

This commit is contained in:
rubidium 2006-09-03 22:21:12 +00:00
parent 03f963af58
commit 38ace9deef

View File

@ -797,7 +797,7 @@ void SwitchMode(int new_mode)
}
}
_generating_world = false;
_patches_newgame.starting_year = ORIGINAL_BASE_YEAR + _cur_year;
_patches_newgame.starting_year = _cur_year;
// delete all stations owned by a player
DeleteAllPlayerStations();
} else {