fixed message about relic/trinc type
Alex Shubert [04-24-12 - 08:57]
fixed message about relic/trinc type
diff --git a/AutoTurnIn.lua b/AutoTurnIn.lua
index da004cc..e2db2db 100644
--- a/AutoTurnIn.lua
+++ b/AutoTurnIn.lua
@@ -297,7 +297,7 @@ function AutoTurnIn:Need()
local class, subclass, _, equipSlot = select(6, GetItemInfo(link))
--[[relics and trinkets are out of autoloot]]--
if (UnitHasRelicSlot("player") and 'INVTYPE_RELIC' == equipSlot) or 'INVTYPE_TRINKET' == equipSlot then
- self:Print(L["stopitemfound"]:format(equipSlot))
+ self:Print(L["stopitemfound"]:format(_G['equipSlot']))
return true
end