mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-09 15:41:15 +00:00
(svn r14145) -Fix (r14135, r14141): When savegame conversion cannot determine a owner of a greyed waypoint, ensure that the owner is assigned when the waypoint is rebuild.
This commit is contained in:
parent
2e28978264
commit
5de17da66e
@ -231,7 +231,6 @@ CommandCost CmdBuildTrainWaypoint(TileIndex tile, uint32 flags, uint32 p1, uint3
|
|||||||
wp->town_index = INVALID_TOWN;
|
wp->town_index = INVALID_TOWN;
|
||||||
wp->name = NULL;
|
wp->name = NULL;
|
||||||
wp->town_cn = 0;
|
wp->town_cn = 0;
|
||||||
wp->owner = owner;
|
|
||||||
} else {
|
} else {
|
||||||
/* Move existing (recently deleted) waypoint to the new location */
|
/* Move existing (recently deleted) waypoint to the new location */
|
||||||
|
|
||||||
@ -251,6 +250,7 @@ CommandCost CmdBuildTrainWaypoint(TileIndex tile, uint32 flags, uint32 p1, uint3
|
|||||||
wp->xy = tile;
|
wp->xy = tile;
|
||||||
InvalidateWindowData(WC_WAYPOINT_VIEW, wp->index);
|
InvalidateWindowData(WC_WAYPOINT_VIEW, wp->index);
|
||||||
}
|
}
|
||||||
|
wp->owner = owner;
|
||||||
|
|
||||||
const StationSpec* statspec;
|
const StationSpec* statspec;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user