From: Liza Carvelli Date: Tue, 12 Aug 2025 20:36:36 +0000 (+0200) Subject: Fix gathering the wrong items X-Git-Tag: v6.1~10 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=fcf9b103ec56f33ea81231b15713634449580de4;p=Questionable.git Fix gathering the wrong items --- 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; }