This commit is contained in:
FlightControl
2016-04-01 17:50:03 +02:00
parent b8c10c2f41
commit 59650adb0a
3 changed files with 1350 additions and 823 deletions

View File

@@ -732,7 +732,7 @@ end
function GROUP:GetTaskMission()
self:F( self.GroupName )
return _Database.Groups[self.GroupName].Template
return routines.utils.deepCopy( _Database.Groups[self.GroupName].Template )
end
--- Return the mission route of the group.
@@ -741,7 +741,7 @@ end
function GROUP:GetTaskRoute()
self:F( self.GroupName )
return _Database.Groups[self.GroupName].Template.route.points
return routines.utils.deepCopy( _Database.Groups[self.GroupName].Template.route.points )
end
--- Return the route of a group by using the @{Database#DATABASE} class.