diff options
-rw-r--r-- | src/waypoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/waypoint.cpp b/src/waypoint.cpp index 7343b9317..1fa291b39 100644 --- a/src/waypoint.cpp +++ b/src/waypoint.cpp @@ -144,7 +144,7 @@ static Waypoint *FindDeletedWaypointCloseTo(TileIndex tile) uint thres = 8; FOR_ALL_WAYPOINTS(wp) { - if (wp->deleted) { + if (wp->deleted && (wp->owner == OWNER_NONE || wp->owner == _current_player)) { uint cur_dist = DistanceManhattan(tile, wp->xy); if (cur_dist < thres) { |