From a1bbcb26ec74e14a76d4790a4bdf13e8fcf6d6b5 Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Fri, 29 Jan 2021 20:32:41 +0000 Subject: [PATCH] amend cheese block recipe and dig groups --- cow.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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"}, } })