master
Mohammad Shoaib Khan 2023-02-22 18:09:43 +05:30
parent 8b0350497b
commit ac190f5939
No known key found for this signature in database
GPG Key ID: D8040D966320B620
2 changed files with 0 additions and 6 deletions

View File

@ -290,11 +290,6 @@ namespace stardew_access
original: AccessTools.Method(typeof(TextBox), nameof(TextBox.Draw)), original: AccessTools.Method(typeof(TextBox), nameof(TextBox.Draw)),
prefix: new HarmonyMethod(typeof(TextBoxPatch), nameof(TextBoxPatch.DrawPatch)) prefix: new HarmonyMethod(typeof(TextBoxPatch), nameof(TextBoxPatch.DrawPatch))
); );
harmony.Patch(
original: AccessTools.Method(typeof(IClickableMenu), nameof(IClickableMenu.draw)),
prefix: new HarmonyMethod(typeof(IClickableMenuPatch), nameof(IClickableMenuPatch.DrawPatch))
);
} }
} }
} }

View File

@ -6,7 +6,6 @@ namespace stardew_access.Patches
{ {
internal class TitleMenuPatches internal class TitleMenuPatches
{ {
private static bool isRunning = false;
public static string advancedGameOptionsQueryKey = " "; public static string advancedGameOptionsQueryKey = " ";
internal static void AdvancedGameOptionsPatch(AdvancedGameOptions __instance) internal static void AdvancedGameOptionsPatch(AdvancedGameOptions __instance)