Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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();
}
}
}