mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-10-29 16:58:06 +00:00
Bugfix
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user