Correct erkir cloud color

This commit is contained in:
Anuken
2022-01-24 13:50:47 -05:00
parent 4a07c95e1c
commit b79ed071b8
6 changed files with 26 additions and 2 deletions

View File

@@ -68,6 +68,26 @@ public class Objectives{
}
}
public static class OnSector implements Objective{
public SectorPreset preset;
public OnSector(SectorPreset zone){
this.preset = zone;
}
protected OnSector(){}
@Override
public boolean complete(){
return preset.sector.hasBase();
}
@Override
public String display(){
return Core.bundle.format("requirement.onsector", preset.localizedName);
}
}
public static class OnPlanet implements Objective{
public Planet planet;