*bugfix
Deome [04-12-16 - 05:02]
diff --git a/ddDataDaedra.lua b/ddDataDaedra.lua
index a880c9c..cea3dae 100644
--- a/ddDataDaedra.lua
+++ b/ddDataDaedra.lua
@@ -1212,7 +1212,7 @@ function ddDataDaedra:chatLinkStatsToChat(itemLink, button, control)
elseif (button == 2 and
itemLink ~= "") then
- if isKeyedItem(itemLink) then
+ if self:isKeyedItem(itemLink) then
AddMenuItem(GetString(SI_ITEM_ACTION_DD_STATS_TO_CHAT), function() self:linkStatsToChat(itemLink) end)
end
@@ -1238,7 +1238,7 @@ function ddDataDaedra:slotControlStatsToChat()
end
local ItemLink = getItemLinkFromSlotControl(SlotControl)
- if isKeyedItem(ItemLink) then
+ if self:isKeyedItem(ItemLink) then
zo_callLater(function() AddMenuItem(GetString(SI_ITEM_ACTION_DD_STATS_TO_CHAT), function() ddDataDaedra:linkStatsToChat(ItemLink) end, MENU_ADD_OPTION_LABEL); ShowMenu(self) end, 50)
end
end