mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Fix DEAD for many bombers, audit DEAD/SEAD lists.
Many of the aircraft that we use for DEAD are not actually capable of the SEAD task in DCS, so they were being loaded as some other task type, usually one that doesn't support Attack Group, which made them lose their waypoint actions and do nothing. This switches them to using CAS which supports a superset of the SEAD capable aircraft. I've also audited the SEAD/DEAD lists. The F-117 was removed because it is not capable of Attack Group *at all*, and all the non-SEAD aircraft that are capable of ground attack moved from SEAD to DEAD. Fixes https://github.com/dcs-liberation/dcs_liberation/issues/1086
This commit is contained in:
@@ -229,7 +229,7 @@ CAS_CAPABLE = [
|
||||
]
|
||||
|
||||
|
||||
# Aircraft used for SEAD tasks
|
||||
# Aircraft used for SEAD tasks. Must be capable of the SEAD DCS task.
|
||||
SEAD_CAPABLE = [
|
||||
JF_17,
|
||||
F_16C_50,
|
||||
@@ -246,8 +246,18 @@ SEAD_CAPABLE = [
|
||||
Su_30,
|
||||
MiG_27K,
|
||||
Tornado_GR4,
|
||||
F_117A,
|
||||
B_17G,
|
||||
]
|
||||
|
||||
|
||||
# Aircraft used for DEAD tasks. Must be capable of the CAS DCS task.
|
||||
DEAD_CAPABLE = [
|
||||
AJS37,
|
||||
F_14B,
|
||||
F_14A_135_GR,
|
||||
B_1B,
|
||||
B_52H,
|
||||
Tu_160,
|
||||
Tu_95MS,
|
||||
A_20G,
|
||||
P_47D_40,
|
||||
P_47D_30bl1,
|
||||
@@ -259,18 +269,6 @@ SEAD_CAPABLE = [
|
||||
Bf_109K_4,
|
||||
FW_190D9,
|
||||
FW_190A8,
|
||||
]
|
||||
|
||||
|
||||
# Aircraft used for DEAD tasks
|
||||
DEAD_CAPABLE = [
|
||||
AJS37,
|
||||
F_14B,
|
||||
F_14A_135_GR,
|
||||
B_1B,
|
||||
B_52H,
|
||||
Tu_160,
|
||||
Tu_95MS,
|
||||
] + SEAD_CAPABLE
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user