We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e82186a commit 0c455fcCopy full SHA for 0c455fc
1 file changed
AuthFix/AuthPlugin.cs
@@ -172,6 +172,19 @@ public static bool Prefix()
172
}
173
174
175
+ [HarmonyPatch(typeof(SplashManager), nameof(SplashManager.Update))]
176
+ public static class SkipIntroPatch
177
+ {
178
+ public static void Prefix(SplashManager __instance)
179
180
+ if (__instance.doneLoadingRefdata && !__instance.startedSceneLoad)
181
182
+ __instance.sceneChanger.AllowFinishLoadingScene();
183
+ __instance.startedSceneLoad = true;
184
+ }
185
186
187
+
188
[HarmonyPatch(typeof(ServerDropdown), nameof(ServerDropdown.FillServerOptions))]
189
public static class ServerDropdownPatch
190
{
0 commit comments