You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Do not write the CanContainVerse property for plugin descriptors when it is false
#jira UE-142055 #rb none #rnx #preflight none #ROBOMERGE-AUTHOR: markus.breyer #ROBOMERGE-SOURCE: CL 18948778 via CL 18949187 via CL 18949188 via CL 18949190 via CL 18952897 via CL 18953142 #ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v917-18934589) [CL 18953161 by markus breyer in ue5-main branch]
This commit is contained in:
@@ -330,7 +330,10 @@ void FPluginDescriptor::UpdateJson(FJsonObject& JsonObject) const
|
||||
}
|
||||
|
||||
JsonObject.SetBoolField(TEXT("CanContainContent"), bCanContainContent);
|
||||
JsonObject.SetBoolField(TEXT("CanContainVerse"), bCanContainVerse);
|
||||
if (bCanContainVerse)
|
||||
{
|
||||
JsonObject.SetBoolField(TEXT("CanContainVerse"), bCanContainVerse);
|
||||
}
|
||||
JsonObject.SetBoolField(TEXT("IsBetaVersion"), bIsBetaVersion);
|
||||
JsonObject.SetBoolField(TEXT("IsExperimentalVersion"), bIsExperimentalVersion);
|
||||
JsonObject.SetBoolField(TEXT("Installed"), bInstalled);
|
||||
|
||||
Reference in New Issue
Block a user