Changeset 477:5d5e70fe99e2
- Timestamp:
- 03/16/13 06:21:11 (12 years ago)
- Branch:
- default
- Children:
- 478:00d38a068da9, 479:f5b5ee3e3204
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/checks.py
r453 r477 56 56 aircraft.setStage(state, const.STAGE_PUSHANDTAXI) 57 57 elif stage==const.STAGE_PUSHANDTAXI or stage==const.STAGE_RTO: 58 if state.strobeLightsOn: 58 if state.strobeLightsOn or \ 59 (state.strobeLightsOn is None and state.xpdrC): 59 60 aircraft.setStage(state, const.STAGE_TAKEOFF) 60 61 elif stage==const.STAGE_TAKEOFF: … … 63 64 aircraft.setStage(state, const.STAGE_CLIMB) 64 65 elif not state.landingLightsOn and \ 65 not state.strobeLightsOn and \ 66 (state.strobeLightsOn is False or 67 (state.strobeLightsOn is None and not state.xpdrC)) and \ 66 68 state.onTheGround and \ 67 69 state.groundSpeed<50.0:
Note:
See TracChangeset
for help on using the changeset viewer.