From 210919e0269815d808cc8442cfd40037ab2ffd16 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Fri, 12 Mar 2010 04:33:52 -0500 Subject: [PATCH] In addon:OnEnable(): Replaced assignment of Mining in Player.professions with assignment of Smelting. --- ARL.lua | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/ARL.lua b/ARL.lua index c0c94f2..403fd77 100644 --- a/ARL.lua +++ b/ARL.lua @@ -635,18 +635,18 @@ function addon:OnEnable() -- Get the player's professions. ------------------------------------------------------------------------------- Player.professions = { - [GetSpellInfo(51304)] = false, -- Alchemy - [GetSpellInfo(51300)] = false, -- Blacksmithing - [GetSpellInfo(51296)] = false, -- Cooking - [GetSpellInfo(51313)] = false, -- Enchanting - [GetSpellInfo(51306)] = false, -- Engineering - [GetSpellInfo(45542)] = false, -- First Aid - [GetSpellInfo(51302)] = false, -- Leatherworking - [GetSpellInfo(32606)] = false, -- Mining - [GetSpellInfo(51309)] = false, -- Tailoring - [GetSpellInfo(51311)] = false, -- Jewelcrafting - [GetSpellInfo(45363)] = false, -- Inscription - [GetSpellInfo(53428)] = false, -- Runeforging + [GetSpellInfo(51304)] = false, -- Alchemy + [GetSpellInfo(51300)] = false, -- Blacksmithing + [GetSpellInfo(51296)] = false, -- Cooking + [GetSpellInfo(51313)] = false, -- Enchanting + [GetSpellInfo(51306)] = false, -- Engineering + [GetSpellInfo(45542)] = false, -- First Aid + [GetSpellInfo(51302)] = false, -- Leatherworking + [GetSpellInfo(2656)] = false, -- Smelting + [GetSpellInfo(51309)] = false, -- Tailoring + [GetSpellInfo(51311)] = false, -- Jewelcrafting + [GetSpellInfo(45363)] = false, -- Inscription + [GetSpellInfo(53428)] = false, -- Runeforging } Player:SetProfessions() -- 1.7.9.5