Grouped files

master
Mohammad Shoaib Khan 2023-03-10 15:33:39 +05:30
parent b8fce68bec
commit 2b6b60494e
No known key found for this signature in database
GPG Key ID: D8040D966320B620
27 changed files with 2 additions and 2 deletions

View File

@ -213,7 +213,7 @@ namespace stardew_access
#region Chat Menu Patches
harmony.Patch(
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

View File

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