mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-23 14:39:08 +00:00
(svn r12845) -Change: use YAPF for fairly old savegames from before YAPF was introduced.
This commit is contained in:
@@ -2415,13 +2415,13 @@ bool AfterLoadGame()
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Convert old PF settings to new */
|
/* Convert old PF settings to new */
|
||||||
if (_patches.yapf.rail_use_yapf) {
|
if (_patches.yapf.rail_use_yapf || CheckSavegameVersion(28)) {
|
||||||
_patches.pathfinder_for_trains = VPF_YAPF;
|
_patches.pathfinder_for_trains = VPF_YAPF;
|
||||||
} else {
|
} else {
|
||||||
_patches.pathfinder_for_trains = (_patches.new_pathfinding_all ? VPF_NPF : VPF_NTP);
|
_patches.pathfinder_for_trains = (_patches.new_pathfinding_all ? VPF_NPF : VPF_NTP);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_patches.yapf.road_use_yapf) {
|
if (_patches.yapf.road_use_yapf || CheckSavegameVersion(28)) {
|
||||||
_patches.pathfinder_for_roadvehs = VPF_YAPF;
|
_patches.pathfinder_for_roadvehs = VPF_YAPF;
|
||||||
} else {
|
} else {
|
||||||
_patches.pathfinder_for_roadvehs = (_patches.new_pathfinding_all ? VPF_NPF : VPF_OPF);
|
_patches.pathfinder_for_roadvehs = (_patches.new_pathfinding_all ? VPF_NPF : VPF_OPF);
|
||||||
|
Reference in New Issue
Block a user