changeset 115:79dc87430cb3

Updated the ArkInventory rule and tooltip to work in QA is compatible instead of if its enabled in ItemAuditor.
author Asa Ayers <Asa.Ayers@Gmail.com>
date Thu, 02 Sep 2010 07:03:38 -0700
parents 3b89982a5d0d
children e16cd6ed3ba3
files CHANGELOG.txt Modules/ArkInventoryRules.lua Modules/Tooltip.lua
diffstat 3 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGELOG.txt	Wed Sep 01 23:43:39 2010 -0700
+++ b/CHANGELOG.txt	Thu Sep 02 07:03:38 2010 -0700
@@ -1,3 +1,7 @@
+2010-09-02  Asa Ayers  <Asa.Ayers@Gmail.com>
+
+- Updated the ArkInventory rule and tooltip to work in QA is compatible instead of if its enabled in ItemAuditor.
+
 2010-09-01  Asa Ayers  <Asa.Ayers@Gmail.com>
 
 - Made some changes to begin migrating some QA functionality to QAManager (http://www.wowace.com/addons/qa-manager/)
--- a/Modules/ArkInventoryRules.lua	Wed Sep 01 23:43:39 2010 -0700
+++ b/Modules/ArkInventoryRules.lua	Thu Sep 02 07:03:38 2010 -0700
@@ -53,7 +53,7 @@
 				end
 				return false
 			elseif string.lower( strtrim( arg ) ) == 'qa' then
-				if ItemAuditor:IsQAEnabled() then
+				if ItemAuditor:IsQACompatible() then
 					local groupName = QAAPI:GetItemGroup(link)
 					if groupName then
 						return true
--- a/Modules/Tooltip.lua	Wed Sep 01 23:43:39 2010 -0700
+++ b/Modules/Tooltip.lua	Thu Sep 02 07:03:38 2010 -0700
@@ -33,7 +33,7 @@
 		
 	end
 	
-	if ItemAuditor:IsQAEnabled() then
+	if ItemAuditor:IsQACompatible() then
 		local groupName = QAAPI:GetItemGroup(link)
 		if groupName then
 			local threshold = QAAPI:GetGroupConfig(groupName)