From 89f159edcb7f51bd38ac53b69f67997bc76f965b Mon Sep 17 00:00:00 2001 From: Raffson Date: Sun, 30 Mar 2025 18:23:37 +0200 Subject: [PATCH] Fix FF-bug when interrupt is set to "At takeoff time" --- game/ato/flightstate/takeoff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/ato/flightstate/takeoff.py b/game/ato/flightstate/takeoff.py index 1ff2facf..f0d39151 100644 --- a/game/ato/flightstate/takeoff.py +++ b/game/ato/flightstate/takeoff.py @@ -51,7 +51,7 @@ class Takeoff(AtDeparture): if ( self.flight.client_count > 0 and self.settings.player_mission_interrupts_sim_at - is [StartType.COLD, StartType.WARM, StartType.RUNWAY] + in [StartType.COLD, StartType.WARM, StartType.RUNWAY] ): logging.info( f"Interrupting simulation because {self.flight} has players and has "