Correct AI startup time.

It doesn't look like the AI is subject to much startup time. I see
B-1, F-15, F-16, and M-2000 all start up in about 2 minutes.
This commit is contained in:
Dan Albert 2020-10-22 00:45:57 -07:00
parent f6d049da3c
commit 95f486870d

View File

@ -202,7 +202,11 @@ class TotEstimator:
@staticmethod
def estimate_startup(flight: Flight) -> int:
if flight.start_type == "Cold":
return 10 * 60
if flight.client_count:
return 10 * 60
else:
# The AI doesn't seem to have a real startup procedure.
return 2 * 60
return 0
@staticmethod