Adjust 'should_halt_sim' conditions for taxi & takeoff flight-states, fixing an infinite loop that would occur if the FF-interrupt setting would not match with the start-type of the flight
This commit is contained in:
Raffson
2023-08-19 15:13:44 +02:00
parent 4901443b7a
commit 8a6b7b172c
3 changed files with 5 additions and 4 deletions

View File

@@ -536,9 +536,8 @@ class Settings:
"Player missions interrupt fast forward",
page=MISSION_GENERATOR_PAGE,
section=GAMEPLAY_SECTION,
default=None,
default=StartType.COLD,
choices={
"Never": None,
"At startup time": StartType.COLD,
"At taxi time": StartType.WARM,
"At takeoff time": StartType.RUNWAY,