I recently discovered that when an asset is placed in an uncontrolled changelist (other than the default) and then re-saved, Unreal Engine crashes.
The issue occurs because when saving an asset from an uncontrolled changelist, the function AddToUncontrolledChangelist(const TArray& InFilenames) in the FUncontrolledChangelistsModule is called. However, this function only adds assets to the default uncontrolled changelist. As a result, when the asset is added to the default changelist, the editor detects that the asset is already in a different uncontrolled changelist. This causes the following check to fail:
checkf(Item->VisitedUpdateNum < CurrUpdateNum, TEXT(“The same uncontrolled item was visited twice. It is likely present in more than one uncontrolled changelist”));
I have developed a fix for this issue, as it has impacted several users in production. I’m happy to share my solution if needed.
This assert was removed for the next engine release and the code updated to better handle the problem in the following change https://github.com/EpicGames/UnrealEngine/commit/7df6e58 but we never managed to gather consistent repro steps for the issue itself.
If your solution fixes something that the change I linked doesn’t then please make a GitHub pull request and let me know here. I’ll make sure it reaches the dev who was looking at this problem.
I tested the fix and it doesn’t behave as expected.
With the fix, whenever you save an asset in an uncontrolled changelist other then the default one the assets are moved to the default uncontrolled changelist.
Here are the repro steps 100%:
Create named uncontrolled changelist
Add asset to newly created uncontrolled changelist
Modify the asset
Save the asset
See that it has been moved to the default uncontrolled changelist (or crashes the engine if you are before the changes in 7df6e58)
it’s worth to tell that our team uses Perforce as our source control provider.
I have proposed the solution that we are currently using in our Studio to fix the issue.