From ba2157cc431e6f74f2a314039d790915b1dc0c10 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Sat, 22 May 2021 15:09:10 -0700 Subject: [PATCH] Tweak winchester behavior for SEAD escort. They can't suppress air defenses after running out of TALDs or ARMs. --- gen/aircraft.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gen/aircraft.py b/gen/aircraft.py index 1156d737..77c32e8a 100644 --- a/gen/aircraft.py +++ b/gen/aircraft.py @@ -1272,6 +1272,8 @@ class AircraftConflictGenerator: group, react_on_threat=OptReactOnThreat.Values.EvadeFire, roe=OptROE.Values.OpenFire, + # ASM includes ARMs and TALDs (among other things, but those are the useful + # weapons for SEAD). rtb_winchester=OptRTBOnOutOfAmmo.Values.ASM, restrict_jettison=True, ) @@ -1398,7 +1400,9 @@ class AircraftConflictGenerator: self.configure_behavior( group, roe=OptROE.Values.OpenFire, - rtb_winchester=OptRTBOnOutOfAmmo.Values.Guided, + # ASM includes ARMs and TALDs (among other things, but those are the useful + # weapons for SEAD). + rtb_winchester=OptRTBOnOutOfAmmo.Values.ASM, restrict_jettison=True, )