Baseless/helpers/CreateContainer.lua

13 lines
213 B
Lua
Raw Normal View History

2020-04-22 04:35:40 +00:00
function CreateContainer (type, prototype)
return CreateEntityWithHealth(
type,
MergeTables(
prototype,
{
inventory_size = 1,
picture = Baseless.Sprite,
}
)
)
end