# HG changeset patch # User Asa Ayers # Date 1283578231 25200 # Node ID 5f6182a97d40386c429b405e7163fcc9567666f9 # Parent 451d8a19edeaeab0ee15942006c54bc869449226 Re-enabled IA QuickAuctions decider. I unintentionally disabled it when working on the QAManager code. diff -r 451d8a19edea -r 5f6182a97d40 CHANGELOG.txt --- a/CHANGELOG.txt Thu Sep 02 23:59:09 2010 -0700 +++ b/CHANGELOG.txt Fri Sep 03 22:30:31 2010 -0700 @@ -1,3 +1,7 @@ +2010-09-03 Asa Ayers + +- Re-enabled IA QuickAuctions decider. I unintentionally disabled it when working on the QAManager code. + 2010-09-02 Asa Ayers - Updated the ArkInventory rule and tooltip to work in QA is compatible instead of if its enabled in ItemAuditor. diff -r 451d8a19edea -r 5f6182a97d40 Modules/QuickAuctions.lua --- a/Modules/QuickAuctions.lua Thu Sep 02 23:59:09 2010 -0700 +++ b/Modules/QuickAuctions.lua Fri Sep 03 22:30:31 2010 -0700 @@ -118,7 +118,7 @@ end local function isProfitable(data) - if ItemAuditor.IsQAEnabled() then + if ItemAuditor:IsQACompatible() then local QAGroup = QAAPI:GetItemGroup(data.link) if QAGroup ~= nil then local currentInvested, _, currentCount = ItemAuditor:GetItemCost(data.link) @@ -157,8 +157,7 @@ set = function(info, value) ItemAuditor.db.char.qa_extra = value end, - handler = ItemAuditor, - disabled = 'IsQACompatible', + disabled = function() return not ItemAuditor:IsQACompatible() end, order = 10, }, }