Skip to content

Commit

Permalink
Merge pull request #38 from KSP2Community/dev
Browse files Browse the repository at this point in the history
Fix bug when editing a part's field
  • Loading branch information
jan-bures authored Feb 13, 2024
2 parents 20f1224 + 95618ce commit f285e61
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugin_template/swinfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Patch Manager",
"description": "A mod for generic patching needs similar to KSP 1's Module Manager.",
"source": "https://github.com/KSP2Community/PatchManager",
"version": "0.10.0",
"version": "0.10.1",
"version_check": "https://raw.githubusercontent.com/KSP2Community/PatchManager/main/plugin_template/swinfo.json",
"ksp2_version": {
"min": "0.2.0",
Expand Down
8 changes: 6 additions & 2 deletions src/PatchManager.Parts/Modifiables/PartModifiable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,18 @@ public override DataValue GetFieldValue(string fieldName)
var repl = fieldName.Replace("PartComponent", "");
if (JToken is not JObject jObject)
return DataValue.Null;
if(!jObject.ContainsKey("serializedPartModules"))
if (!jObject.ContainsKey("serializedPartModules"))
return DataValue.Null;
foreach (var module in jObject["serializedPartModules"])
{
if (module is not JObject moduleObject)continue;
if (module is not JObject moduleObject) continue;
if (moduleObject.ContainsKey("Name") && ((string)moduleObject["Name"])!.Replace("PartComponent", "") == repl)
return DataValue.FromJToken(module);
}

if (jObject.TryGetValue(fieldName, out var value))
return DataValue.FromJToken(value);

return DataValue.Null;
}

Expand Down

0 comments on commit f285e61

Please sign in to comment.