mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Remove max distance for AEW&C auto planning.
Fixes https://github.com/dcs-liberation/dcs_liberation/issues/1259
This commit is contained in:
parent
5f8b838652
commit
b130c9882a
@ -7,6 +7,7 @@ Saves from 3.x are not compatible with 4.0.
|
|||||||
* **[Campaign]** Squadrons now have a maximum size and killed pilots replenish at a limited rate.
|
* **[Campaign]** Squadrons now have a maximum size and killed pilots replenish at a limited rate.
|
||||||
* **[Campaign]** Added an option to disable levelling up of AI pilots.
|
* **[Campaign]** Added an option to disable levelling up of AI pilots.
|
||||||
* **[Campaign AI]** AI will plan Tanker flights.
|
* **[Campaign AI]** AI will plan Tanker flights.
|
||||||
|
* **[Campaign AI]** Removed max distance for AEW&C auto planning.
|
||||||
* **[Economy]** Adjusted prices for aircraft to balance out some price inconsistencies.
|
* **[Economy]** Adjusted prices for aircraft to balance out some price inconsistencies.
|
||||||
* **[Factions]** Added more tankers to factions.
|
* **[Factions]** Added more tankers to factions.
|
||||||
* **[Flight Planner]** Added ability to plan Tankers.
|
* **[Flight Planner]** Added ability to plan Tankers.
|
||||||
|
|||||||
@ -58,6 +58,10 @@ class Distance:
|
|||||||
def from_nautical_miles(cls, value: float) -> Distance:
|
def from_nautical_miles(cls, value: float) -> Distance:
|
||||||
return cls(value * NM_TO_METERS)
|
return cls(value * NM_TO_METERS)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def inf(cls) -> Distance:
|
||||||
|
return cls.from_meters(math.inf)
|
||||||
|
|
||||||
def __add__(self, other: Distance) -> Distance:
|
def __add__(self, other: Distance) -> Distance:
|
||||||
return meters(self.meters + other.meters)
|
return meters(self.meters + other.meters)
|
||||||
|
|
||||||
|
|||||||
@ -584,7 +584,7 @@ class CoalitionMissionPlanner:
|
|||||||
MAX_OCA_RANGE = nautical_miles(150)
|
MAX_OCA_RANGE = nautical_miles(150)
|
||||||
MAX_SEAD_RANGE = nautical_miles(150)
|
MAX_SEAD_RANGE = nautical_miles(150)
|
||||||
MAX_STRIKE_RANGE = nautical_miles(150)
|
MAX_STRIKE_RANGE = nautical_miles(150)
|
||||||
MAX_AWEC_RANGE = nautical_miles(200)
|
MAX_AWEC_RANGE = Distance.inf()
|
||||||
MAX_TANKER_RANGE = nautical_miles(200)
|
MAX_TANKER_RANGE = nautical_miles(200)
|
||||||
|
|
||||||
def __init__(self, game: Game, is_player: bool) -> None:
|
def __init__(self, game: Game, is_player: bool) -> None:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user