comparison Modules/ArkInventoryRules.lua @ 119:d94195157a6b

Moved the check for QAManager so it doesn't interfere with the tooltip or ArkInventory rule.
author Asa Ayers <Asa.Ayers@Gmail.com>
date Thu, 02 Sep 2010 21:16:04 -0700
parents 79dc87430cb3
children 09a38a382194
comparison
equal deleted inserted replaced
118:92b66533c386 119:d94195157a6b
54 return false 54 return false
55 elseif string.lower( strtrim( arg ) ) == 'qa' then 55 elseif string.lower( strtrim( arg ) ) == 'qa' then
56 if ItemAuditor:IsQACompatible() then 56 if ItemAuditor:IsQACompatible() then
57 local groupName = QAAPI:GetItemGroup(link) 57 local groupName = QAAPI:GetItemGroup(link)
58 if groupName then 58 if groupName then
59 DevTools_Dump({link, groupName})
59 return true 60 return true
60 end 61 end
61 end 62 end
63 DevTools_Dump({link, false})
62 return false 64 return false
63 end 65 end
64 66
65 else 67 else
66 68