Fix not clearing "appliedPatches" correctly

This commit is contained in:
redphx 2024-05-03 18:09:31 +07:00
parent 07a4034cc1
commit f144fac81e

View File

@ -558,6 +558,8 @@ export class Patcher {
const caches: { [key: string]: string[] } = {}; const caches: { [key: string]: string[] } = {};
for (let id in item[1]) { for (let id in item[1]) {
appliedPatches = [];
const cachedPatches = PatcherCache.getPatches(id); const cachedPatches = PatcherCache.getPatches(id);
if (cachedPatches) { if (cachedPatches) {
patchesToCheck = cachedPatches; patchesToCheck = cachedPatches;
@ -572,8 +574,6 @@ export class Patcher {
} }
// console.log(patchesToCheck); // console.log(patchesToCheck);
appliedPatches = [];
const func = item[1][id]; const func = item[1][id];
let str = func.toString(); let str = func.toString();