diff --git a/Core.lua b/Core.lua index 25e4f7d6..3e80df6c 100644 --- a/Core.lua +++ b/Core.lua @@ -675,7 +675,7 @@ function R:IsAttemptAllowed(item) end local dungeonID = select(10, GetInstanceInfo()) - if dungeonID and not item.requiredDungeons[dungeonID] then + if dungeonID and item.requiredDungeons and not item.requiredDungeons[dungeonID] then Rarity:Debug(format("Attempts for item %s are disallowed (not a required dungeon: %d)", item.name, dungeonID)) return false end