From fcf9b103ec56f33ea81231b15713634449580de4 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Tue, 12 Aug 2025 22:36:36 +0200 Subject: [PATCH] Fix gathering the wrong items --- Questionable/Controller/Steps/Gathering/DoGather.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Questionable/Controller/Steps/Gathering/DoGather.cs b/Questionable/Controller/Steps/Gathering/DoGather.cs index e9abd7d0..c7636f6d 100644 --- a/Questionable/Controller/Steps/Gathering/DoGather.cs +++ b/Questionable/Controller/Steps/Gathering/DoGather.cs @@ -138,7 +138,7 @@ internal static class DoGather for (int i = 0; i < 8; ++i) { // +8 = new item? - uint itemId = atkValues[i * 11 + 7].UInt; + uint itemId = addonGathering->ItemIds[i]; if (itemId == 0) continue; @@ -161,6 +161,7 @@ internal static class DoGather slots.Add(slot); } + logger.LogTrace("Slots: {Slots}", string.Join(", ", slots)); return slots; } -- 2.20.1