Added for A2A in SETTINGS LL and MGRS!

This commit is contained in:
FlightControl
2017-07-12 22:34:52 +02:00
parent c1bee3a9b0
commit f8cca7d510
2 changed files with 87 additions and 1 deletions

View File

@@ -808,11 +808,16 @@ do -- COORDINATE
local Coordinate = Controllable:GetCoordinate()
return self:ToStringBRA( Coordinate, Settings )
end
if Settings:IsA2A_BULLS() then
local Coalition = Controllable:GetCoalition()
return self:ToStringBULLS( Coalition, Settings )
end
if Settings:IsA2A_LL() then
return self:ToStringLL( Settings )
end
if Settings:IsA2A_MGRS() then
return self:ToStringMGRS( Settings )
end
else
if Settings:IsA2G_BR() then
local Coordinate = Controllable:GetCoordinate()