mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
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:
parent
f6d049da3c
commit
95f486870d
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user