Fix clay
This commit is contained in:
parent
18f7433be0
commit
f999bd9224
@ -240,7 +240,7 @@ minetest.register_node("default:sand_with_clay", {
|
|||||||
particle_image = {"default_clay_lump.png"},
|
particle_image = {"default_clay_lump.png"},
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
groups = {crumbly=3,drop_on_dig=1},
|
groups = {crumbly=3,drop_on_dig=1},
|
||||||
drop = "default:clay_lump 4",
|
drop = "grounds:clay_lump 4",
|
||||||
sounds = default.node_sound_dirt_defaults({
|
sounds = default.node_sound_dirt_defaults({
|
||||||
footstep = "",
|
footstep = "",
|
||||||
}),
|
}),
|
||||||
@ -634,11 +634,6 @@ minetest.register_craftitem("default:book", {
|
|||||||
inventory_image = "default_book.png",
|
inventory_image = "default_book.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("default:clay_lump", {
|
|
||||||
description = "Clay Lump",
|
|
||||||
inventory_image = "default_clay_lump.png",
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craftitem("default:clay_brick", {
|
minetest.register_craftitem("default:clay_brick", {
|
||||||
description = "Clay Brick",
|
description = "Clay Brick",
|
||||||
inventory_image = "default_clay_brick.png",
|
inventory_image = "default_clay_brick.png",
|
||||||
|
@ -193,8 +193,8 @@ minetest.register_craftitem("metals:ceramic_mold", {
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "metals:clay_mold 5",
|
output = "metals:clay_mold 5",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:clay_lump", "", "default:clay_lump"},
|
{"grounds:clay_lump", "", "grounds:clay_lump"},
|
||||||
{"default:clay_lump", "default:clay_lump", "default:clay_lump"},
|
{"grounds:clay_lump", "grounds:clay_lump", "grounds:clay_lump"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user