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,
-- CAS = XXX,
GROUND_ATTACK = 2,
HELICOPTER = 3,
HELO_HUNT = 4,
INTERCEPTION = 5,
OCA = 6,
SEAD = 7,
STRIKE = 8,
-- HELICOPTER = 3,
HELO_HUNT = 3,
INTERCEPTION = 4,
OCA = 5,
SEAD = 6,
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.TARGET_COUNT] = { "1", "2", "3", "4" },
[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.WINGMEN] = { "None", "1", "2", "3" }
}