Baseless/helpers/CreateTool.lua

12 lines
158 B
Lua

function CreateTool (type, prototype)
return CreateItem(
type,
MergeTables(
prototype,
{
infinite = true,
}
)
)
end