change coordinate format for A-10C_2 to DDM

This commit is contained in:
Markus Ast
2021-11-03 13:41:42 +01:00
parent 22dea08045
commit 0d7630d3df

View File

@@ -259,8 +259,10 @@ local function loadScratchpad()
local function coordsType()
local ac = DCS.getPlayerUnitType()
if ac == "FA-18C_hornet" or ac == "A-10C_2" then
if ac == "FA-18C_hornet" then
return "DMS", true
elseif ac == "A-10C_2" then
return "DDM", true
elseif ac == "F-16C_50" or ac == "M-2000C" then
return "DDM", false
else