We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79812bc commit a868527Copy full SHA for a868527
src/PatchManager.Core/Assets/PatchingManager.cs
@@ -188,7 +188,7 @@ private static AsyncOperationHandle<IList<TextAsset>> RebuildCache(string label)
188
{
189
var patchedText = PatchJson(label, name, text);
190
if (patchedText == "") continue;
191
- archiveFiles[name] = text;
+ archiveFiles[name] = patchedText;
192
labelCacheEntry.Assets.Add(name);
193
assetsCacheEntries.Add(name, new CacheEntry
194
@@ -350,4 +350,4 @@ bool killLoadingBarTips
350
LoadingBarPatch.InjectPatchManagerTips = !killLoadingBarTips;
351
resolve();
352
}
353
-}
+}
0 commit comments