Baseless/helpers/CreateLogisticContainer.lua

12 lines
186 B
Lua
Raw Normal View History

2020-04-22 04:35:40 +00:00
function CreateLogisticContainer (type, prototype)
return CreateContainer(
type,
MergeTables(
prototype,
{
logistic_mode = "storage",
}
)
)
end