Skip to content

Commit

Permalink
Merge pull request #34 from KSP2Community/cheese3660-fix-patching-cre…
Browse files Browse the repository at this point in the history
…ated-nodes

Update PatchingManager.cs
  • Loading branch information
jan-bures authored Jan 14, 2024
2 parents 79812bc + b5ff36f commit 9ce0bb9
Show file tree
Hide file tree
Showing 2 changed files with 3 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.9.1",
"version": "0.9.2",
"version_check": "https://raw.githubusercontent.com/KSP2Community/PatchManager/main/plugin_template/swinfo.json",
"ksp2_version": {
"min": "0.2.0",
Expand Down
4 changes: 2 additions & 2 deletions src/PatchManager.Core/Assets/PatchingManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private static AsyncOperationHandle<IList<TextAsset>> RebuildCache(string label)
{
var patchedText = PatchJson(label, name, text);
if (patchedText == "") continue;
archiveFiles[name] = text;
archiveFiles[name] = patchedText;
labelCacheEntry.Assets.Add(name);
assetsCacheEntries.Add(name, new CacheEntry
{
Expand Down Expand Up @@ -350,4 +350,4 @@ bool killLoadingBarTips
LoadingBarPatch.InjectPatchManagerTips = !killLoadingBarTips;
resolve();
}
}
}

0 comments on commit 9ce0bb9

Please sign in to comment.