6 lines
585 B
Lua
6 lines
585 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param index number
|
|
---@param isRightClick 1nil
|
|
---Allows to 'move' an item from the void storages deposit box back to inventory. The 'moved' item will subsequently be unlocked in the inventory. If isRightClick is set the item is returned and unlocked immediately. If isRightClick is not set the item is attached to the mouse until it is either released to the inventory (by right clicking) or manually placed either in the inventory or any deposit slot.
|
|
function ClickVoidTransferDepositSlot(index, isRightClick) end |