Razbam F-15E banner and icon.

Just reusing the old one.

https://github.com/dcs-liberation/dcs_liberation/issues/3028
This commit is contained in:
Dan Albert 2023-06-22 18:49:09 -07:00 committed by Raffson
parent 918716044c
commit 50975d5eb6
No known key found for this signature in database
GPG Key ID: B0402B2C9B764D99
2 changed files with 3 additions and 0 deletions

View File

@ -209,6 +209,7 @@ def load_aircraft_icons():
for f1 in f1_refuel:
AIRCRAFT_ICONS[f1] = AIRCRAFT_ICONS["Mirage-F1C-200"]
AIRCRAFT_ICONS["Mirage-F1M-CE"] = AIRCRAFT_ICONS["Mirage-F1CE"]
AIRCRAFT_ICONS["F-15ESE"] = AIRCRAFT_ICONS["F-15E"]
def load_vehicle_icons():

View File

@ -34,6 +34,8 @@ def aircraft_banner_for(unit_type: AircraftType) -> Path:
name = "Mirage-F1C"
elif unit_type.dcs_id in {"Su-30MKA", "Su-30MKI", "Su-30MKM"}:
name = "Su-30SM"
elif unit_type.dcs_id == "F-15ESE":
name = "F-15E"
else:
name = unit_type.dcs_id
return AIRCRAFT_BANNERS_BASE / f"{name}.jpg"