(svn r18925) -Fix (r18924): a waypoint can have a buoy but no rail waypoint tile

pull/155/head
yexo 15 years ago
parent 3794892add
commit 2efa70fde8

@ -213,7 +213,8 @@ static const Order *ResolveOrder(VehicleID vehicle_id, AIOrder::OrderPosition or
if (wp->TileBelongsToRailStation(t)) return t;
}
}
return INVALID_TILE;
/* If the waypoint has no rail waypoint tiles, it must have a buoy */
return wp->xy;
}
default: return INVALID_TILE;
}

Loading…
Cancel
Save