Baseless/helpers/CreateLogisticContainer.lua

12 lines
186 B
Lua

function CreateLogisticContainer (type, prototype)
return CreateContainer(
type,
MergeTables(
prototype,
{
logistic_mode = "storage",
}
)
)
end