From a95c49915a89393ae3f9b8e1bc0d3bccf072047b Mon Sep 17 00:00:00 2001 From: Applevangelist Date: Tue, 1 Feb 2022 08:02:51 +0100 Subject: [PATCH] SET - correct error in intersection --- Moose Development/Moose/Core/Set.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moose Development/Moose/Core/Set.lua b/Moose Development/Moose/Core/Set.lua index ea5e9f04c..e834da16c 100644 --- a/Moose Development/Moose/Core/Set.lua +++ b/Moose Development/Moose/Core/Set.lua @@ -317,7 +317,7 @@ do -- SET_BASE for _, Object in pairs( union.Set ) do if self:IsIncludeObject( Object ) and SetB:IsIncludeObject( Object ) then - intersection:AddObject( intersection ) + intersection:AddObject( Object ) end end