Skip to content

Commit

Permalink
Core: Fixed the detection for Dreamseed Cache mounts
Browse files Browse the repository at this point in the history
Without tests this unfortunately slipped past the PR review. My bad.
  • Loading branch information
rdw-software committed Nov 25, 2023
1 parent 27a478d commit 397cbae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/EventHandlers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 397cbae

Please sign in to comment.