Grouped files

This commit is contained in:
Mohammad Shoaib Khan
2023-03-10 15:33:39 +05:30
parent b8fce68bec
commit 2b6b60494e
27 changed files with 2 additions and 2 deletions

View File

@@ -213,7 +213,7 @@ namespace stardew_access
#region Chat Menu Patches #region Chat Menu Patches
harmony.Patch( harmony.Patch(
original: AccessTools.Method(typeof(ChatBox), nameof(ChatBox.update), new Type[] { typeof(GameTime) }), original: AccessTools.Method(typeof(ChatBox), nameof(ChatBox.update), new Type[] { typeof(GameTime) }),
postfix: new HarmonyMethod(typeof(ChatMenuPatch), nameof(ChatMenuPatch.UpdatePatch)) postfix: new HarmonyMethod(typeof(ChatBoxPatch), nameof(ChatBoxPatch.UpdatePatch))
); );
#endregion #endregion

View File

@@ -2,7 +2,7 @@
namespace stardew_access.Patches namespace stardew_access.Patches
{ {
internal class ChatMenuPatch internal class ChatBoxPatch
{ {
private static int currentChatMessageIndex = 0; private static int currentChatMessageIndex = 0;
private static bool isChatRunning = false; private static bool isChatRunning = false;