Baseless/helpers/CreateItemWithInventory.lua

12 lines
183 B
Lua
Raw Normal View History

2020-04-22 04:35:40 +00:00
function CreateItemWithInventory (type, prototype)
return CreateItemWithLabel(
type,
MergeTables(
prototype,
{
inventory_size = 0,
}
)
)
end