Skip to content

Commit

Permalink
Ten min key looks like it was set to every 1 minute.
Browse files Browse the repository at this point in the history
  • Loading branch information
julianperrott committed Nov 24, 2020
1 parent 6a100f1 commit f4e1790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/FishingFunBot/Bot/FishBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private void WaitForBite()

private void PressTenMinKeyIfDue()
{
if ((DateTime.Now - StartTime).TotalMinutes > 1 && tenMinKey.Count > 0)
if ((DateTime.Now - StartTime).TotalMinutes > 10 && tenMinKey.Count > 0)
{
DoTenMinuteKey();
}
Expand Down

0 comments on commit f4e1790

Please sign in to comment.