From 2c1f25025f03ac1271cc8f1b8efe21a8a2609dbc Mon Sep 17 00:00:00 2001 From: RDW Date: Thu, 19 Oct 2023 13:48:24 +0200 Subject: [PATCH] Update Core.lua --- Core.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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