Replaced "ocaBomberStrike" with "ocaStrategicAircraftStrike" (can be bomber OR transport)

This commit is contained in:
Ambroise Garel
2025-09-17 16:08:34 +02:00
parent 525484385a
commit 1c6b06a1a6
@@ -1,11 +1,11 @@
Library.tasks.ocaBomberStrike = { Library.tasks.ocaStrategicAircraftStrike = {
taskFamily = DCSEx.enums.taskFamily.OCA, taskFamily = DCSEx.enums.taskFamily.OCA,
description = description =
{ {
briefing = { briefing = {
"" ""
}, },
short = "Destroy enemy bomber on the ramp", short = "Destroy enemy aircraft on the ramp",
}, },
conditions = { conditions = {
difficultyMinimum = 0, difficultyMinimum = 0,
@@ -17,6 +17,6 @@ Library.tasks.ocaBomberStrike = {
safeRadius = 0, safeRadius = 0,
surfaceType = land.SurfaceType.LAND, surfaceType = land.SurfaceType.LAND,
targetCount = { 1, 1 }, targetCount = { 1, 1 },
targetFamilies = { DCSEx.enums.unitFamily.PLANE_BOMBER }, targetFamilies = { DCSEx.enums.unitFamily.PLANE_BOMBER, DCSEx.enums.unitFamily.PLANE_TRANSPORT },
waypointInaccuracy = 0.0 waypointInaccuracy = 0.0
} }