Changeset 1193:53d1eaf65157


Ignore:
Timestamp:
06/14/25 05:44:21 (15 hours ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
Tags:
tip
Message:

N1 is considered 0 below 10 for the Felis Tu154-B2 on X-Plane (re #392)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/xplane.py

    r1192 r1193  
    23772377        if self._n1Index>=0:
    23782378            state.n1 = data[self._n1Index:self._n1Index+3]
     2379            state.n1 = [0 if n1<10.0 else n1 for n1 in state.n1]
    23792380
    23802381        return state
Note: See TracChangeset for help on using the changeset viewer.