This commit is contained in:
Frank
2022-11-04 22:36:20 +01:00
parent 6bf077e0aa
commit 1fc9f13919
7 changed files with 11 additions and 8 deletions

View File

@@ -328,7 +328,7 @@ CHIEF.Strategy = {
--- CHIEF class version.
-- @field #string version
CHIEF.version="0.5.0"
CHIEF.version="0.5.1"
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- TODO list
@@ -1613,6 +1613,7 @@ end
-- @param #CHIEF self
-- @return #CHIEF self
function CHIEF:AllowGroundTransport()
env.warning("WARNING: CHIEF:AllowGroundTransport() is depricated and will be removed in the future!")
self.TransportCategories = {Group.Category.GROUND, Group.Category.HELICOPTER}
return self
end
@@ -1621,6 +1622,7 @@ end
-- @param #CHIEF self
-- @return #CHIEF self
function CHIEF:ForbidGroundTransport()
env.warning("WARNING: CHIEF:ForbidGroundTransport() is depricated and will be removed in the future!")
self.TransportCategories = {Group.Category.HELICOPTER}
return self
end