diff --git a/Moose Development/Moose/Core/Set.lua b/Moose Development/Moose/Core/Set.lua index 2e46bca29..e98007512 100644 --- a/Moose Development/Moose/Core/Set.lua +++ b/Moose Development/Moose/Core/Set.lua @@ -719,20 +719,20 @@ end --- Gets the Set. -- @param #SET_GROUP self -- @return #SET_GROUP self -function SET_BASE:GetSet() - self:F2() - - -- Clean the Set before returning with only the alive Groups. - for GroupName, GroupObject in pairs( self.Set ) do - if GroupObject then - if not GroupObject:IsAlive() then - self:Remove( GroupName ) - end - end - end - - return self.Set -end +--function SET_BASE:GetSet() +-- self:F2() +-- +-- -- Clean the Set before returning with only the alive Groups. +-- for GroupName, GroupObject in pairs( self.Set ) do +-- if GroupObject then +-- if not GroupObject:IsAlive() then +-- self:Remove( GroupName ) +-- end +-- end +-- end +-- +-- return self.Set +--end --- Add GROUP(s) to SET_GROUP.