Grouped files
parent
b8fce68bec
commit
2b6b60494e
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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;
|
Loading…
Reference in New Issue