Skip to content

Commit

Permalink
Merge pull request #89 from n8rzz/feature/ATC-53
Browse files Browse the repository at this point in the history
feature/ATC-53
  • Loading branch information
n8rzz authored Nov 24, 2016
2 parents 6a9b9ff + cbfd296 commit 840e073
Show file tree
Hide file tree
Showing 26 changed files with 1,437 additions and 712 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 3.2.0 (December 20, 2016)
---
### Major
* Integrates `sidCollection` and `starCollection` with `RouteModel` within `AircraftInstanceModel` [#53](https://github.com/n8rzz/atc/issues/53)
- Creates getters for `currentLeg` and `currentWaypoint`
- Abstracts restrictions logic to live within `Waypoint`
- Consolidates `runSID()` and `climbViaSid()` logic



Expand Down
2 changes: 1 addition & 1 deletion src/assets/scripts/aircraft/AircraftController.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export default class AircraftController {
// Clean up the screen from aircraft that are too far
if (
(!this.aircraft_visible(aircraft, 2) && !aircraft.inside_ctr) &&
aircraft.fms.currentWaypoint().navmode === 'heading'
aircraft.fms.currentWaypoint.navmode === 'heading'
) {
if (aircraft.category === 'arrival' || aircraft.category === 'departure') {
remove = true;
Expand Down
Loading

0 comments on commit 840e073

Please sign in to comment.