annotate QueueSupport/GnomeWorks.lua @ 153:613fd4bc6999

Ticket 45 - Fixed a bug that caused the crafting window to craft if you turn off all of the deciders. Fixed an issue where the crafting window would crash if GetTradeSkillReagentItemLink() failed to return a link. This happened with my Wild Turkey
author Asa Ayers <Asa.Ayers@Gmail.com>
date Sat, 04 Dec 2010 08:41:44 -0800
parents 47885ba83d38
children
rev   line source
Asa@150 1 local function GnomeWorksQueue(data)
Asa@150 2 if GnomeWorks then
Asa@150 3 GnomeWorks:ShowQueueList()
Asa@150 4 GnomeWorks:AddToQueue(GnomeWorks.player, data.tradeSkillIndex, data.recipeID, data.queue)
Asa@150 5 else
Asa@150 6 print("Unable to find GnomeWorks")
Asa@150 7 end
Asa@150 8 end
Asa@150 9 IAapi.RegisterQueueDestination('GnomeWorks', GnomeWorksQueue)