7 lines
486 B
Lua
7 lines
486 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param name string
|
|
---@return boolean isLocked
|
|
---Returns whether an equipment set contains locked items. Locked items are those in a transient state -- e.g. on the cursor for moving within the player's bags, placed in the Send Mail or Trade UIs, etc. -- for which the default UI displays the item's icon as grayed out. A set cannot be equipped if it contains locked items.
|
|
function EquipmentSetContainsLockedItems(name) end
|