mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Fix None dereference.
This commit is contained in:
parent
dcaa8d4e96
commit
72e6ae4186
@ -1527,7 +1527,10 @@ class RunwayData:
|
|||||||
ils: Optional[RadioFrequency] = None
|
ils: Optional[RadioFrequency] = None
|
||||||
try:
|
try:
|
||||||
airfield = AIRFIELD_DATA[airport.name]
|
airfield = AIRFIELD_DATA[airport.name]
|
||||||
atc = airfield.atc.uhf
|
if airfield.atc is not None:
|
||||||
|
atc = airfield.atc.uhf
|
||||||
|
else:
|
||||||
|
atc = None
|
||||||
tacan = airfield.tacan
|
tacan = airfield.tacan
|
||||||
tacan_callsign = airfield.tacan_callsign
|
tacan_callsign = airfield.tacan_callsign
|
||||||
ils = airfield.ils_freq(runway)
|
ils = airfield.ils_freq(runway)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user