Skip to content

Commit

Permalink
fix(autoforager/integrations): Bump integration wait timer from 5s->30s
Browse files Browse the repository at this point in the history
  • Loading branch information
jag3dagster committed Apr 6, 2024
1 parent 0610c60 commit c5f8d18
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/AutoForager/AutoForager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Name>Auto Forager</Name>
<Authors>Jag3Dagster</Authors>
<Description>Automatically forage items simply by moving near them.</Description>
<Version>3.0.1</Version>
<Version>3.0.2</Version>
<UpdateKeys>Nexus:7736</UpdateKeys>

<MinimumApiVersion>auto</MinimumApiVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/AutoForager/Integrations/BushBloomWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public async Task<List<BloomSchedule>> UpdateSchedules()
{
if (_bushBloomApi is not null)
{
var tries = 10;
var tries = 60;

while (!_bushBloomApi.IsReady() && tries-- > 0)
{
Expand Down
2 changes: 1 addition & 1 deletion src/AutoForager/Integrations/CustomBushWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public async Task<IEnumerable<string>> GetDrops()

if (_customBushApi is not null && _contentPatcherApi is not null)
{
var tries = 10;
var tries = 60;

while (!_contentPatcherApi.IsConditionsApiReady && tries-- > 0)
{
Expand Down
2 changes: 2 additions & 0 deletions src/AutoForager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ Ukrainian | ✔ | ❌ | ❌ | n/a

## Releases
Releases can be found on [GitHub](https://github.com/Hedgehog-Technologies/StardewMods/releases), on the [Nexus Mod](https://www.nexusmods.com/stardewvalley/mods/7736) site, and on the [CurseForge](https://www.curseforge.com/stardewvalley/mods/auto-forager) site.
### 3.0.2
- Bump Integration wait timer from 5s -> 30s to account for larger installed mod counts
### 3.0.1
- Fix Spring Onions and Ginger not being foraged
### 3.0.0
Expand Down

0 comments on commit c5f8d18

Please sign in to comment.