diff --git a/cow.lua b/cow.lua index f92afc5..0fac747 100644 --- a/cow.lua +++ b/cow.lua @@ -243,16 +243,16 @@ minetest.register_node(":mobs:cheeseblock", { description = S("Cheese Block"), tiles = {"mobs_cheeseblock.png"}, is_ground_content = false, - groups = {crumbly = 3}, + groups = {oddly_breakable_by_hand = 3}, sounds = default.node_sound_dirt_defaults() }) minetest.register_craft({ output = "mobs:cheeseblock", recipe = { - {"mobs:cheese", "mobs:cheese", "mobs:cheese"}, - {"mobs:cheese", "mobs:cheese", "mobs:cheese"}, - {"mobs:cheese", "mobs:cheese", "mobs:cheese"}, + {"group:food_cheese", "group:food_cheese", "group:food_cheese"}, + {"group:food_cheese", "group:food_cheese", "group:food_cheese"}, + {"group:food_cheese", "group:food_cheese", "group:food_cheese"}, } })