Fixed another minor issue with the PR

This commit is contained in:
Khopa 2021-08-07 00:12:55 +02:00
parent 9ea1edf9db
commit 4f53e2beea

View File

@ -1187,10 +1187,7 @@ class Fob(ControlPoint):
return len(self.helipads)
def can_operate(self, aircraft: AircraftType) -> bool:
if aircraft.helicopter:
return True
else:
return False
return aircraft.helicopter
@property
def heading(self) -> Heading: