Temporarily disabled Helicopter missions

This commit is contained in:
Ambroise Garel 2025-10-19 17:34:06 +02:00
parent 392f06d4e2
commit 2d96f23d2f
2 changed files with 8 additions and 7 deletions

View File

@ -43,12 +43,12 @@ DCSEx.enums.taskFamily = {
-- CAP = XXX, -- CAP = XXX,
-- CAS = XXX, -- CAS = XXX,
GROUND_ATTACK = 2, GROUND_ATTACK = 2,
HELICOPTER = 3, -- HELICOPTER = 3,
HELO_HUNT = 4, HELO_HUNT = 3,
INTERCEPTION = 5, INTERCEPTION = 4,
OCA = 6, OCA = 5,
SEAD = 7, SEAD = 6,
STRIKE = 8, STRIKE = 7,
} }
------------------------------------- -------------------------------------

View File

@ -52,7 +52,8 @@ do
[TUM.settings.id.PLAYER_COALITION] = { "Red", "Blue" }, -- Must match values in the coalition.side enum [TUM.settings.id.PLAYER_COALITION] = { "Red", "Blue" }, -- Must match values in the coalition.side enum
[TUM.settings.id.TARGET_COUNT] = { "1", "2", "3", "4" }, [TUM.settings.id.TARGET_COUNT] = { "1", "2", "3", "4" },
[TUM.settings.id.TARGET_LOCATION] = { }, [TUM.settings.id.TARGET_LOCATION] = { },
[TUM.settings.id.TASKING] = { "Antiship strike", "Ground attack", "Helicopter-specific tasks", "Helo hunt", "Interception", "Offensive counter-air", "SEAD", "Strike" }, -- Must match values in the DCSEx.enums.taskFamily enum -- [TUM.settings.id.TASKING] = { "Antiship strike", "Ground attack", "Helicopter-specific tasks", "Helo hunt", "Interception", "Offensive counter-air", "SEAD", "Strike" }, -- Must match values in the DCSEx.enums.taskFamily enum
[TUM.settings.id.TASKING] = { "Antiship strike", "Ground attack", "Helo hunt", "Interception", "Offensive counter-air", "SEAD", "Strike" }, -- Must match values in the DCSEx.enums.taskFamily enum
[TUM.settings.id.TIME_PERIOD] = { "World War 2", "Korea War", "Vietnam War", "Late Cold War", "Modern" }, -- Must match values in the DCSEx.enums.timePeriod enum [TUM.settings.id.TIME_PERIOD] = { "World War 2", "Korea War", "Vietnam War", "Late Cold War", "Modern" }, -- Must match values in the DCSEx.enums.timePeriod enum
[TUM.settings.id.WINGMEN] = { "None", "1", "2", "3" } [TUM.settings.id.WINGMEN] = { "None", "1", "2", "3" }
} }