Skip to content

Commit 18b9a5b

Browse files
committed
Fix #376 by also logging mod references of missing mods
1 parent 8e7a617 commit 18b9a5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Mods/SML/Source/SML/Private/Patching/Patch/SaveMetadataPatch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ FSavedModInfo FSavedModInfo::FromModInfo(const FModInfo& ModInfo)
6161
FString FModMismatch::ToString() const {
6262
if (this->IsMissing)
6363
{
64-
return FString::Printf(TEXT("%ls is missing"), *this->Was.Name);
64+
return FString::Printf(TEXT("%ls (%ls) is missing"), *this->Was.Name, *this->Was.Reference);
6565
}
6666
return FString::Printf(TEXT("%ls (%ls -> %ls)"),
6767
*this->Is.FriendlyName,* this->Was.Version.ToString(), *this->Is.Version.ToString());

0 commit comments

Comments
 (0)