Skip to content

Commit

Permalink
fix(hoppie): Remove ATSU/AOC source checks (flybywiresim#8296)
Browse files Browse the repository at this point in the history
* Update HoppieConnector.ts

* Update CHANGELOG.md
  • Loading branch information
alepouna authored Nov 14, 2023
1 parent e1bf51e commit 72a6813
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
1. [MCDU] FUEL PRED layout improvemnts @BravoMike99 (bruno_pt99)
1. [EFCS] Add precontrol to roll angle controller to improve dynamic response - @lukecologne (luke)
1. [EFCS] Increase maximum sim rate limit to 8 due to improvements in roll law stability - @lukecologne (luke)
1. [HOPPIE] Remove ATSU/AOC source checks - @auroraisluna (alepouna)

## 0.11.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,6 @@ export class HoppieConnector {
return;
}

const metarSrc = NXDataStore.get('CONFIG_METAR_SRC', 'MSFS');
if (metarSrc !== 'VATSIM' && metarSrc !== 'IVAO') {
console.log('Invalid METAR source');
return;
}

const atisSrc = NXDataStore.get('CONFIG_ATIS_SRC', 'FAA');
if (atisSrc !== 'VATSIM' && atisSrc !== 'IVAO') {
console.log('Invalid ATIS source');
return;
}

const body = {
logon: NXDataStore.get('CONFIG_HOPPIE_USERID', ''),
from: 'FBWA32NX',
Expand Down

0 comments on commit 72a6813

Please sign in to comment.