amend cheese block recipe and dig groups

This commit is contained in:
tenplus1 2021-01-29 20:32:41 +00:00
parent 77ed774de5
commit a1bbcb26ec

View File

@ -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"},
} }
}) })