Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PatchingManager.cs #34

Merged
merged 2 commits into from
Jan 14, 2024
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();
}
}
}