From: Liza Carvelli Date: Sat, 28 Jun 2025 20:08:57 +0000 (+0200) Subject: Fix gathering as miner checking for the wrong status X-Git-Tag: v5.20^0 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=503f94ad461212f8cfb2dda2672150f94603c033;p=Questionable.git Fix gathering as miner checking for the wrong status --- diff --git a/Directory.Build.targets b/Directory.Build.targets index a823ad53..9db77123 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -1,5 +1,5 @@ - 5.19 + 5.20 diff --git a/Questionable/Controller/Steps/Shared/Gather.cs b/Questionable/Controller/Steps/Shared/Gather.cs index 0874c717..31f6a9cf 100644 --- a/Questionable/Controller/Steps/Shared/Gather.cs +++ b/Questionable/Controller/Steps/Shared/Gather.cs @@ -63,7 +63,7 @@ internal static class Gather yield break; if (currentClassJob == EClassJob.Miner) - yield return new Action.TriggerStatusIfMissing(EStatus.Triangulate, EAction.Prospect); + yield return new Action.TriggerStatusIfMissing(EStatus.Prospect, EAction.Prospect); else if (currentClassJob == EClassJob.Botanist) yield return new Action.TriggerStatusIfMissing(EStatus.Triangulate, EAction.Triangulate);