mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Improved special case for Su-33 carrier takeoff payload
This commit is contained in:
parent
b3a2464249
commit
bb19bfb925
@ -105,9 +105,13 @@ class AircraftConflictGenerator:
|
|||||||
group.set_frequency(124.0)
|
group.set_frequency(124.0)
|
||||||
|
|
||||||
# Special case so Su 33 carrier take off
|
# Special case so Su 33 carrier take off
|
||||||
if unit_type is Su_33 and task is not CAP:
|
if unit_type is Su_33:
|
||||||
for unit in group.units:
|
if task is not CAP:
|
||||||
unit.fuel = Su_33.fuel_max / 2.2
|
for unit in group.units:
|
||||||
|
unit.fuel = Su_33.fuel_max / 2.2
|
||||||
|
else:
|
||||||
|
for unit in group.units:
|
||||||
|
unit.fuel = Su_33.fuel_max * 0.8
|
||||||
|
|
||||||
|
|
||||||
def _generate_at_airport(self, name: str, side: Country, unit_type: FlyingType, count: int, client_count: int, airport: Airport = None, start_type = None) -> FlyingGroup:
|
def _generate_at_airport(self, name: str, side: Country, unit_type: FlyingType, count: int, client_count: int, airport: Airport = None, start_type = None) -> FlyingGroup:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user