mirror of
https://codeberg.org/tenplus1/mobs_animal.git
synced 2024-11-14 14:50:21 +01:00
amend cheese block recipe and dig groups
This commit is contained in:
parent
77ed774de5
commit
a1bbcb26ec
8
cow.lua
8
cow.lua
|
@ -243,16 +243,16 @@ minetest.register_node(":mobs:cheeseblock", {
|
||||||
description = S("Cheese Block"),
|
description = S("Cheese Block"),
|
||||||
tiles = {"mobs_cheeseblock.png"},
|
tiles = {"mobs_cheeseblock.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {crumbly = 3},
|
groups = {oddly_breakable_by_hand = 3},
|
||||||
sounds = default.node_sound_dirt_defaults()
|
sounds = default.node_sound_dirt_defaults()
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mobs:cheeseblock",
|
output = "mobs:cheeseblock",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"mobs:cheese", "mobs:cheese", "mobs:cheese"},
|
{"group:food_cheese", "group:food_cheese", "group:food_cheese"},
|
||||||
{"mobs:cheese", "mobs:cheese", "mobs:cheese"},
|
{"group:food_cheese", "group:food_cheese", "group:food_cheese"},
|
||||||
{"mobs:cheese", "mobs:cheese", "mobs:cheese"},
|
{"group:food_cheese", "group:food_cheese", "group:food_cheese"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user