diff --git a/README.md b/README.md index 5084c52c..012f3334 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,7 @@ Valid keys in each airports object are as follows: "positions": {}, "positions_mentor": {}, "sid_airspace": {}, + "star_airspace": {}, "runways": {}, "sectors": {}, "sids": {}, diff --git a/src/Compiler/Config/AirfieldConfigFileSections.cs b/src/Compiler/Config/AirfieldConfigFileSections.cs index 8868de0d..06b9b91e 100644 --- a/src/Compiler/Config/AirfieldConfigFileSections.cs +++ b/src/Compiler/Config/AirfieldConfigFileSections.cs @@ -18,6 +18,7 @@ public class AirfieldConfigFileSections new ConfigFileSection("positions", InputDataType.ESE_POSITIONS, "Positions"), new ConfigFileSection("positions_mentor", InputDataType.ESE_POSITIONS_MENTOR, "Mentoring Positions"), new ConfigFileSection("sid_airspace", InputDataType.SCT_SIDS, "SID Airspace"), + new ConfigFileSection("star_airspace", InputDataType.SCT_STARS, "STAR Airspace"), new ConfigFileSection("runways", InputDataType.SCT_RUNWAYS, "Runways`"), new ConfigFileSection("sectors", InputDataType.ESE_SECTORLINES, "Sectors"), new ConfigFileSection("sids", InputDataType.ESE_SIDS, "SIDs"),