diff --git a/hoggit/group.lua b/hoggit/group.lua index c464f22..a195599 100644 --- a/hoggit/group.lua +++ b/hoggit/group.lua @@ -41,6 +41,9 @@ HOGGIT.CoordForPlaneType = function(planeType, pos) local dms = function() return mist.tostringLL(lat, long, 0, "") end + local dms1 = function() + return mist.tostringLL(lat, long, 1, "") + end local ddm = function() return mist.tostringLL(lat, long, 3) end @@ -58,7 +61,8 @@ HOGGIT.CoordForPlaneType = function(planeType, pos) ["A-10C_2"] = mgrs, ["F-14B"] = ddm, ["F-16C_50"] = ddm, - ["FA-18C_hornet"] = ddm2 + ["FA-18C_hornet"] = ddm2, + ["JF-17"] = dms1 -- Everything else will default to dms. Add things here if we need exclusions. } local f = unitCoordTypeTable[planeType]