This commit is contained in:
Frank
2021-07-11 18:15:25 +02:00
parent 6dfd757ea1
commit 268eb1d60d
9 changed files with 358 additions and 157 deletions

View File

@@ -1478,7 +1478,7 @@ end
-- @param #DATABASE self
-- @param Ops.OpsGroup#OPSGROUP opsgroup The OPS group added to the DB.
function DATABASE:AddOpsGroup(opsgroup)
env.info("Adding OPSGROUP "..tostring(opsgroup.groupname))
--env.info("Adding OPSGROUP "..tostring(opsgroup.groupname))
self.FLIGHTGROUPS[opsgroup.groupname]=opsgroup
end
@@ -1494,7 +1494,7 @@ function DATABASE:GetOpsGroup(groupname)
groupname=groupname:GetName()
end
env.info("Getting OPSGROUP "..tostring(groupname))
--env.info("Getting OPSGROUP "..tostring(groupname))
return self.FLIGHTGROUPS[groupname]
end
@@ -1510,7 +1510,7 @@ function DATABASE:FindOpsGroup(groupname)
groupname=groupname:GetName()
end
env.info("Getting OPSGROUP "..tostring(groupname))
--env.info("Getting OPSGROUP "..tostring(groupname))
return self.FLIGHTGROUPS[groupname]
end