From 503f94ad461212f8cfb2dda2672150f94603c033 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sat, 28 Jun 2025 22:08:57 +0200 Subject: [PATCH] Fix gathering as miner checking for the wrong status --- Directory.Build.targets | 2 +- Questionable/Controller/Steps/Shared/Gather.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); -- 2.20.1