From b8fda47d1d29857fc33d91084d49722c055cb6d6 Mon Sep 17 00:00:00 2001 From: Adrian L Lange Date: Wed, 26 May 2021 06:56:10 +0200 Subject: [PATCH] Create a valid index on classic when jewelcraft doesn't exist Fixes p3lim-wow/Molinari#55 --- LibProcessable.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibProcessable.lua b/LibProcessable.lua index d10def2..a5fddbf 100644 --- a/LibProcessable.lua +++ b/LibProcessable.lua @@ -313,7 +313,7 @@ local classicIDs = { [(GetSpellInfo(2575))] = 186, -- Mining [(GetSpellInfo(8613))] = 393, -- Skinning [(GetSpellInfo(3908))] = 197, -- Tailoring - [(GetSpellInfo(25229))] = 755, -- Jewelcrafting + [(GetSpellInfo(25229)) or 0] = 755, -- Jewelcrafting } local Handler = CreateFrame('Frame')