# Bug fixes

This commit is contained in:
Applevangelist 2022-11-14 18:16:31 +01:00
commit 6724bb8edd
3 changed files with 7 additions and 5 deletions

View File

@ -335,7 +335,7 @@ do -- SETTINGS
--- Sets the SETTINGS MGRS accuracy. --- Sets the SETTINGS MGRS accuracy.
-- @param #SETTINGS self -- @param #SETTINGS self
-- @param #number MGRS_Accuracy -- @param #number MGRS_Accuracy 0 to 5
-- @return #SETTINGS -- @return #SETTINGS
function SETTINGS:SetMGRS_Accuracy( MGRS_Accuracy ) function SETTINGS:SetMGRS_Accuracy( MGRS_Accuracy )
self.MGRS_Accuracy = MGRS_Accuracy self.MGRS_Accuracy = MGRS_Accuracy

View File

@ -3320,7 +3320,7 @@ end
-- @param #PLAYERTASKCONTROLLER self -- @param #PLAYERTASKCONTROLLER self
-- @param Core.Set#SET_ZONE RejectZoneSet Add a zone to the reject zone set. -- @param Core.Set#SET_ZONE RejectZoneSet Add a zone to the reject zone set.
-- @return #PLAYERTASKCONTROLLER self -- @return #PLAYERTASKCONTROLLER self
function PLAYERTASKCONTROLLER:AddRejectZone(RejectZoneSet) function PLAYERTASKCONTROLLER:AddRejectZoneSet(RejectZoneSet)
self:T(self.lid.."AddRejectZoneSet") self:T(self.lid.."AddRejectZoneSet")
if self.Intel then if self.Intel then
self.Intel.rejectzoneset:AddSet(RejectZoneSet) self.Intel.rejectzoneset:AddSet(RejectZoneSet)
@ -3348,7 +3348,7 @@ end
-- @param #PLAYERTASKCONTROLLER self -- @param #PLAYERTASKCONTROLLER self
-- @param Core.Zone#ZONE RejectZone Add a zone to the reject zone set. -- @param Core.Zone#ZONE RejectZone Add a zone to the reject zone set.
-- @return #PLAYERTASKCONTROLLER self -- @return #PLAYERTASKCONTROLLER self
function PLAYERTASKCONTROLLER:RemoveRejectZone(RejectZone) function PLAYERTASKCONTROLLER:RemoveRejectZoneSet(RejectZone)
self:T(self.lid.."RemoveRejectZone") self:T(self.lid.."RemoveRejectZone")
if self.Intel then if self.Intel then
self.Intel:RemoveRejectZone(RejectZone) self.Intel:RemoveRejectZone(RejectZone)

View File

@ -606,10 +606,12 @@ end
-- acc- the accuracy of each easting/northing. 0, 1, 2, 3, 4, or 5. -- acc- the accuracy of each easting/northing. 0, 1, 2, 3, 4, or 5.
UTILS.tostringMGRS = function(MGRS, acc) --R2.1 UTILS.tostringMGRS = function(MGRS, acc) --R2.1
if acc == 0 then if acc <= 0 then
return MGRS.UTMZone .. ' ' .. MGRS.MGRSDigraph return MGRS.UTMZone .. ' ' .. MGRS.MGRSDigraph
else else
if acc > 5 then acc = 5 end
-- Test if Easting/Northing have less than 4 digits. -- Test if Easting/Northing have less than 4 digits.
--MGRS.Easting=123 -- should be 00123 --MGRS.Easting=123 -- should be 00123
--MGRS.Northing=5432 -- should be 05432 --MGRS.Northing=5432 -- should be 05432