annotate QueueSupport/ATSW.lua @ 152:cbb427a8d5a5

Fixed a bug where your equipped items were not counted as items in your inventory. If you replaced an equipped item and one of them had a cost associated, it would transfer the value between the two.
author Asa Ayers <Asa.Ayers@Gmail.com>
date Mon, 29 Nov 2010 11:25:55 -0800
parents 47885ba83d38
children
rev   line source
Asa@150 1 local function ATSWQueue(data)
Asa@150 2 if ATSW_AddJobLL then
Asa@150 3 ATSW_AddJobLL(data.skillName, data.queue)
Asa@150 4 else
Asa@150 5 print("Unable to find ATSW")
Asa@150 6 end
Asa@150 7 end
Asa@150 8 IAapi.RegisterQueueDestination('ATSW', ATSWQueue)