remove unnecessary definition fields

This commit is contained in:
Tim 2015-01-30 17:47:04 +01:00
parent 91fceece18
commit b9173be3b8
2 changed files with 0 additions and 3 deletions

View File

@ -73,7 +73,6 @@ local function register_dust(name, ingot)
minetest.register_craftitem("technic:"..lname.."_dust", {
description = S("%s Dust"):format(S(name)),
inventory_image = "technic_"..lname.."_dust.png",
on_place_on_ground = minetest.craftitem_place_item,
})
if ingot then
minetest.register_craft({

View File

@ -8,7 +8,6 @@ local sawdust = "technic:sawdust"
minetest.register_craftitem(sawdust, {
description = S("Sawdust"),
inventory_image = "technic_sawdust.png",
on_place_on_ground = minetest.craftitem_place_item,
})
minetest.register_craft({ type = "fuel", recipe = sawdust, burntime = 6 })
technic.register_compressor_recipe({ input = {sawdust .. " 4"}, output = "default:wood" })
@ -25,7 +24,6 @@ local function register_tree_grinding(name, tree, wood, extract, grinding_color)
minetest.register_craftitem(grindings_name, {
description = S("%s Grinding"):format(S(name)),
inventory_image = inventory_image,
on_place_on_ground = minetest.craftitem_place_item,
})
minetest.register_craft({
type = "fuel",