This commit is contained in:
Anuken
2021-09-04 09:55:23 -04:00
parent 80acea4708
commit 48f359ca9b
2 changed files with 2 additions and 2 deletions

View File

@@ -288,7 +288,7 @@ public class SectorInfo{
public void eachImport(Planet planet, Cons<Sector> cons){
for(Sector sector : planet.sectors){
Sector dest = sector.info.getRealDestination();
if(sector.hasBase() && sector.info != this && dest != null && dest.info == this){
if(sector.hasBase() && sector.info != this && dest != null && dest.info == this && sector.info.anyExports()){
cons.get(sector);
}
}