Skip to content

Commit

Permalink
AutoHook 3.0.0.2 [PUSH]
Browse files Browse the repository at this point in the history
#120 fix
  • Loading branch information
InitialDet committed Oct 16, 2023
1 parent 55e4bd1 commit cd3d1f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AutoHook/AutoHook.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Det</Authors>
<Version>3.0.0.1</Version>
<Version>3.0.0.2</Version>
<Description>Auto hooks for you</Description>
<PackageProjectUrl>https://github.com/InitialDet/AutoHook</PackageProjectUrl>
<Configurations>Release;Debug</Configurations>
Expand Down
2 changes: 1 addition & 1 deletion AutoHook/HookManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private void OnFrameworkUpdate(IFramework _)
private void UseAutoCasts()
{
// if _lastStep is FishBit but currentState is FishingState.PoleReady, it case means that the fish was hooked, but it escaped.
if (_lastStep is CatchSteps.None or CatchSteps.BeganFishing or CatchSteps.BeganMooching or CatchSteps.FishBit)
if (_lastStep is CatchSteps.None or CatchSteps.BeganFishing or CatchSteps.BeganMooching)
return;

if (!_recastTimer.IsRunning)
Expand Down

0 comments on commit cd3d1f0

Please sign in to comment.