5bb7be4968
Each Details_* plugin and the main Details addon now lives in its own repo-root folder, matching the Exiles fork-layout convention.
18 lines
509 B
Lua
18 lines
509 B
Lua
|
|
local detailsFramework = _G["DetailsFramework"]
|
|
if (not detailsFramework or not DetailsFrameworkCanLoad) then
|
|
return
|
|
end
|
|
|
|
--namespace
|
|
detailsFramework.Items = {}
|
|
|
|
function detailsFramework.Items.GetContainerItemInfo(containerIndex, slotIndex)
|
|
return GetContainerItemInfo(containerIndex, slotIndex)
|
|
end
|
|
|
|
function detailsFramework.Items.IsItemSoulbound(containerIndex, slotIndex)
|
|
local bIsBound = select(11, detailsFramework.Items.GetContainerItemInfo(containerIndex, slotIndex))
|
|
return bIsBound
|
|
end
|