summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/openttd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index 95551dbb5..afd5ceb6c 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -2522,7 +2522,7 @@ bool AfterLoadGame()
Waypoint *wp;
Owner owner;
FOR_ALL_WAYPOINTS(wp) {
- owner = GetTileOwner(wp->xy);
+ owner = (IsTileType(wp->xy, MP_RAILWAY) && IsRailWaypoint(wp->xy) ? GetTileOwner(wp->xy) : OWNER_NONE);
wp->owner = IsValidPlayerID(owner) ? owner : OWNER_NONE;
}
}