This commit is contained in:
SoulliesOfficial
2025-05-03 02:42:16 -04:00
parent 23fa72f91a
commit 90797bd760
3 changed files with 123 additions and 1 deletions

View File

@@ -138,7 +138,10 @@ namespace Ichni.Editor
{
for (int i = 0; i < gameElement.childElementList.Count; i++)
{
AffiliatedPaste(gameElement.childElementList[i], pastedElement);
if (!pastedElementList.Contains(gameElement.childElementList[i]))
{
AffiliatedPaste(gameElement.childElementList[i], pastedElement);
}
}
}
}