diff --git a/Patches/PlatformSetupPatches.cs b/Patches/PlatformSetupPatches.cs new file mode 100644 index 0000000..0798231 --- /dev/null +++ b/Patches/PlatformSetupPatches.cs @@ -0,0 +1,16 @@ +using HarmonyLib; +using System; +using MIU; + +namespace ConsoleUnlocker.Patches +{ + [HarmonyPatch(typeof(PlatformSetup), "GetDevIDs")] + internal class PlatformSetupPatches + { + static void Postfix() + { + GlobalContext.Invoke(Array.Empty()); + MIU.Console.Instance.gameObject.SetActive(true); + } + } +}