From 397cbae20a1908104d38761e54c13cb83700993d Mon Sep 17 00:00:00 2001 From: RDW Date: Sun, 26 Nov 2023 00:58:25 +0100 Subject: [PATCH] Core: Fixed the detection for Dreamseed Cache mounts Without tests this unfortunately slipped past the PR review. My bad. --- Core/EventHandlers.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/EventHandlers.lua b/Core/EventHandlers.lua index c1757f3a..88d1002e 100644 --- a/Core/EventHandlers.lua +++ b/Core/EventHandlers.lua @@ -2125,7 +2125,7 @@ local dreamseedMounts = { function Rarity:OnDreamseedCacheOpened() Rarity:Debug("Detected Opening on Dreamseed Cache") - for mount, _ in pairs(dreamseedMounts) do + for _, mount in ipairs(dreamseedMounts) do addAttemptForItem(mount, "mounts") end end