diff --git a/edr/edrresourcefinder.py b/edr/edrresourcefinder.py index 025ff95..fc68aec 100644 --- a/edr/edrresourcefinder.py +++ b/edr/edrresourcefinder.py @@ -597,6 +597,8 @@ def recommend_prospecting_planet(self, resource, reference_system, callback): best_distance = None best = None for planet in candidates: + if planet['name'] == "brain tree site" and (not self.dlc or self.dlc.lower() != "odyssey"): + continue distance = self.edr_systems.distance(reference_system, planet['name']) if best_distance is None or distance < best_distance: best_distance = distance