mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-11 04:50:26 +01:00
10 lines
204 B
Lua
10 lines
204 B
Lua
|
|
local S = technic.getter
|
|
|
|
function technic.register_grinder(data)
|
|
data.typename = "grinding"
|
|
data.machine_name = "grinder"
|
|
data.machine_desc = S("%s Grinder")
|
|
technic.register_base_machine(data)
|
|
end
|