Remove unused property from Flight.

This commit is contained in:
Dan Albert 2022-09-02 21:05:10 -07:00 committed by Raffson
parent 793a87d4fb
commit 1ea6260054
No known key found for this signature in database
GPG Key ID: B0402B2C9B764D99

View File

@ -27,7 +27,7 @@ if TYPE_CHECKING:
from game.sim.gameupdateevents import GameUpdateEvents from game.sim.gameupdateevents import GameUpdateEvents
from game.sim.simulationresults import SimulationResults from game.sim.simulationresults import SimulationResults
from game.squadrons import Squadron, Pilot from game.squadrons import Squadron, Pilot
from game.theater import ControlPoint, MissionTarget from game.theater import ControlPoint
from game.transfers import TransferOrder from game.transfers import TransferOrder
from .flightplans.flightplan import FlightPlan from .flightplans.flightplan import FlightPlan
from .flighttype import FlightType from .flighttype import FlightType
@ -62,8 +62,6 @@ class Flight(SidcDescribable):
self.roster = roster self.roster = roster
self.divert = divert self.divert = divert
self.flight_type = flight_type self.flight_type = flight_type
# TODO: Replace with FlightPlan.
self.targets: List[MissionTarget] = []
self.loadout = Loadout.default_for(self) self.loadout = Loadout.default_for(self)
self.start_type = start_type self.start_type = start_type
self.use_custom_loadout = False self.use_custom_loadout = False