# HG changeset patch # User Asa Ayers # Date 1287455144 25200 # Node ID 47885ba83d38915dac7ab255b9840c8075e27f1e # Parent c949a0f26d9e19f4e1c0c55b2c1d9a945f9c448c Removed some debugging code that caused characters on your own account to use the cross-account mail. Addes support GnomeWorks and ATSW queues. diff -r c949a0f26d9e -r 47885ba83d38 CHANGELOG.txt --- a/CHANGELOG.txt Sat Oct 16 07:36:11 2010 -0700 +++ b/CHANGELOG.txt Mon Oct 18 19:25:44 2010 -0700 @@ -1,3 +1,8 @@ +2010-10-18 Asa Ayers + +- Removed some debugging code that caused characters on your own account to use the cross-account mail. +- Addes support GnomeWorks and ATSW queues. + 2010-10-16 Asa Ayers - Fixed references to 'this' which Blizzard removed in 4.0.1 diff -r c949a0f26d9e -r 47885ba83d38 ItemAuditor.toc --- a/ItemAuditor.toc Sat Oct 16 07:36:11 2010 -0700 +++ b/ItemAuditor.toc Mon Oct 18 19:25:44 2010 -0700 @@ -29,3 +29,5 @@ Modules\UnitTests.lua +QueueSupport\ATSW.lua +QueueSupport\GnomeWorks.lua \ No newline at end of file diff -r c949a0f26d9e -r 47885ba83d38 Modules/Events.lua --- a/Modules/Events.lua Sat Oct 16 07:36:11 2010 -0700 +++ b/Modules/Events.lua Mon Oct 18 19:25:44 2010 -0700 @@ -120,7 +120,6 @@ for character in pairs(DataStore:GetCharacters(realm, account)) do if strlower(recipient) == strlower(character) then destinationType = (account == 'Default') and 'same_account' or 'owned_account' - destinationType = 'owned_account' break end end diff -r c949a0f26d9e -r 47885ba83d38 QueueSupport/ATSW.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/QueueSupport/ATSW.lua Mon Oct 18 19:25:44 2010 -0700 @@ -0,0 +1,8 @@ +local function ATSWQueue(data) + if ATSW_AddJobLL then + ATSW_AddJobLL(data.skillName, data.queue) + else + print("Unable to find ATSW") + end +end +IAapi.RegisterQueueDestination('ATSW', ATSWQueue) diff -r c949a0f26d9e -r 47885ba83d38 QueueSupport/GnomeWorks.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/QueueSupport/GnomeWorks.lua Mon Oct 18 19:25:44 2010 -0700 @@ -0,0 +1,9 @@ +local function GnomeWorksQueue(data) + if GnomeWorks then + GnomeWorks:ShowQueueList() + GnomeWorks:AddToQueue(GnomeWorks.player, data.tradeSkillIndex, data.recipeID, data.queue) + else + print("Unable to find GnomeWorks") + end +end +IAapi.RegisterQueueDestination('GnomeWorks', GnomeWorksQueue)