diff --git a/CringeLauncher/Patches/IntrospectionPatches.cs b/CringeLauncher/Patches/IntrospectionPatches.cs index 0422dd5..aca54ef 100644 --- a/CringeLauncher/Patches/IntrospectionPatches.cs +++ b/CringeLauncher/Patches/IntrospectionPatches.cs @@ -38,8 +38,7 @@ public static class IntrospectionPatches //mods need to look for specific derived types Debug.WriteLine($"Getting special types for {__instance.FullName}"); var module = __instance.GetMainModule(); - __result = IntrospectionContext.Global.CollectDerivedTypes(module) - .Concat(IntrospectionContext.Global.CollectDerivedTypes(module)) + __result = IntrospectionContext.Global.CollectDerivedTypes(module) .Concat(IntrospectionContext.Global.CollectDerivedTypes(module)) .Concat(IntrospectionContext.Global.CollectAttributedTypes(module)) .Concat(IntrospectionContext.Global.CollectDerivedTypes(module))