Skip to content

Commit

Permalink
fix game 20230208 update crash
Browse files Browse the repository at this point in the history
修复情人节更新导致的崩溃
  • Loading branch information
xiaoye97 committed Feb 8, 2023
1 parent 2c9a93c commit c72b25c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CoreKeeperAutoFish/AutoFishPatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static void PlayerBaseState_StartFishing_Patch()
autoThrowPullUp = false;
}

[HarmonyPostfix, HarmonyPatch(typeof(PlayerState.PlayerBaseState), "ExitFishing")]
[HarmonyPostfix, HarmonyPatch(typeof(PlayerState.PlayerBaseState), "OnExitFishing")]
public static void PlayerBaseState_ExitFishing_Patch(PlayerState.PlayerBaseState __instance, bool wasExitingState)
{
if (!wasExitingState) return;
Expand Down
2 changes: 1 addition & 1 deletion CoreKeeperAutoFish/AutoFishPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal class AutoFishPlugin : BasePlugin
public const string GUID = "me.xiaoye97.plugin.CoreKeeperAutoFish";
public const string NAME = "CoreKeeperAutoFish";
public const string AUTHOR = "xiaoye97";
public const string VERSION = "1.7.0";
public const string VERSION = "1.8.0";

public static AutoFishPlugin Inst { get; private set; }
public static ManualLogSource LogSource => Inst.Log;
Expand Down

0 comments on commit c72b25c

Please sign in to comment.