Mercurial > wow > inventory
view CraftingAddons/AdvancedTradeSkillWindow.lua @ 35:31e5da6a2b16
Added a description for which item count addon is used.
Virtual group option should no longer get disabled.
author | Zerotorescue |
---|---|
date | Wed, 03 Nov 2010 19:38:53 +0100 |
parents | 5006cb0e97c6 |
children |
line wrap: on
line source
do local function Queue(tradeSkillIndex, amount) local link = GetTradeSkillItemLink(tradeSkillIndex); local itemName = link:match("%[([^%[%]]*)%]"); return ATSW_AddJob(itemName, amount); end local function IsEnabled() return (ATSW_AddJob); end IMRegisterCraftingAddon("AdvancedTradeSkillWindow", Queue, IsEnabled); end