Revert "Use PatchProcessor ctor directly instead of Harmony.CreatePatchProcessor"

This reverts commit 9c1d459655.
This commit is contained in:
Sinai
2021-11-20 18:57:53 +11:00
parent 3f31db8dd8
commit 8123ec2412
5 changed files with 6 additions and 10 deletions

View File

@ -14,7 +14,7 @@ namespace UnityExplorer
try
{
var method = typeof(Assembly).GetMethod(nameof(Assembly.GetTypes), new Type[0]);
var processor = ExplorerCore.CreatePatch(method);
var processor = ExplorerCore.Harmony.CreateProcessor(method);
processor.AddFinalizer(typeof(ReflectionPatches).GetMethod(nameof(Assembly_GetTypes)));
processor.Patch();
}