Changeset 357:95a02e0c97d3


Ignore:
Timestamp:
12/13/12 15:56:21 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

The Fokker F70 aircraft can take of with flaps set to 0 (#149)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/checks.py

    r356 r357  
    955955
    956956        FIXME: check if this really is the intention (FlapsRetractedMistake.java)"""
    957         if (flight.stage==const.STAGE_TAKEOFF and not state.onTheGround) or \
     957        if (flight.stage==const.STAGE_TAKEOFF and not state.onTheGround and
     958            aircraft.type!=const.AIRCRAFT_F70) or \
    958959           (flight.stage==const.STAGE_LANDING and state.onTheGround):
    959960            if self._timeStart is None:
Note: See TracChangeset for help on using the changeset viewer.