From 4f53e2beea936f6b66831fd8473e5a9a0b984f1c Mon Sep 17 00:00:00 2001 From: Khopa Date: Sat, 7 Aug 2021 00:12:55 +0200 Subject: [PATCH] Fixed another minor issue with the PR --- game/theater/controlpoint.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/game/theater/controlpoint.py b/game/theater/controlpoint.py index 4b843b1a..d968b9a3 100644 --- a/game/theater/controlpoint.py +++ b/game/theater/controlpoint.py @@ -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: