diff --git a/ModuleManager/MMPatchLoader.cs b/ModuleManager/MMPatchLoader.cs index 0c00bf64..1ff5bc52 100644 --- a/ModuleManager/MMPatchLoader.cs +++ b/ModuleManager/MMPatchLoader.cs @@ -818,7 +818,7 @@ private void CheckNeeds(IEnumerable mods, IPatchProgress progress) } } - private void CheckNeeds(NodeStack stack, PatchContext context, IEnumerable mods) + private static void CheckNeeds(NodeStack stack, PatchContext context, IEnumerable mods) { bool needsCopy = false; ConfigNode original = stack.value; @@ -895,7 +895,7 @@ private void CheckNeeds(NodeStack stack, PatchContext context, IEnumerable /// Returns true if needs are satisfied. /// - private bool CheckNeeds(ref string name, IEnumerable mods) + private static bool CheckNeeds(ref string name, IEnumerable mods) { if (name == null) return true;