Changeset 1156:8d9eb69a4c39
- Timestamp:
- 04/25/24 17:42:48 (7 months ago)
- Branch:
- python3
- Phase:
- public
- Location:
- src/mlx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gates.py
r1155 r1156 39 39 return plane is None or \ 40 40 ((self.maxSpan<0.1 or plane.wingSpan <= self.maxSpan) and 41 (self.maxLength<0.1 or plane.fuselageLength <= self.maxLength)) 41 (self.maxLength<0.1 or plane.fuselageLength <= self.maxLength) and 42 (not plane.hasStairs or self.type!="G")) 42 43 else: 43 44 return False -
src/mlx/rpccommon.py
r1154 r1156 24 24 "A" if status==const.PLANE_AWAY else \ 25 25 "P" if status==const.PLANE_PARKING else "" 26 27 @property 28 def hasStairs(self): 29 """Indicate if the plane has its own stairs.""" 30 return self.aircraftType in [const.AIRCRAFT_YK40, 31 const.AIRCRAFT_CRJ2, 32 const.AIRCRAFT_F70, 33 const.AIRCRAFT_DH8D] 26 34 27 35 def _setStatus(self, letter):
Note:
See TracChangeset
for help on using the changeset viewer.