mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
[VisualCloneFix] Fix reflection mistake
This commit is contained in:
parent
a00dc6279a
commit
192bd5d0f8
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ public class VisualCloneFixMod : MelonMod
|
||||||
|
|
||||||
HarmonyInstance.Patch( // fix binding of exclusion ids to compute buffer
|
HarmonyInstance.Patch( // fix binding of exclusion ids to compute buffer
|
||||||
typeof(SkinnedLocalClone).GetMethod(nameof(SkinnedLocalClone.FindExclusionVertList),
|
typeof(SkinnedLocalClone).GetMethod(nameof(SkinnedLocalClone.FindExclusionVertList),
|
||||||
BindingFlags.NonPublic | BindingFlags.Static),
|
BindingFlags.Public | BindingFlags.Static),
|
||||||
prefix: new HarmonyMethod(typeof(VisualCloneFixMod).GetMethod(nameof(FindExclusionVertList),
|
prefix: new HarmonyMethod(typeof(VisualCloneFixMod).GetMethod(nameof(FindExclusionVertList),
|
||||||
BindingFlags.NonPublic | BindingFlags.Static))
|
BindingFlags.NonPublic | BindingFlags.Static))
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue