use group:food_mushroom for mushroom soup

master
tenplus1 2021-04-06 18:57:00 +01:00
parent 027773eddf
commit 244ae58b31
2 changed files with 6 additions and 6 deletions

View File

@ -12,8 +12,8 @@ minetest.register_craftitem("ethereal:mushroom_soup", {
minetest.register_craft({
output = "ethereal:mushroom_soup",
recipe = {
{"flowers:mushroom_brown"},
{"flowers:mushroom_brown"},
{"group:food_mushroom"},
{"group:food_mushroom"},
{"group:food_bowl"}
}
})

View File

@ -93,7 +93,7 @@ minetest.register_node("ethereal:frost_tree", {
"ethereal_frost_tree_top.png",
"ethereal_frost_tree.png"
},
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, put_out_fire = 1},
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, puts_out_fire = 1},
sounds = default.node_sound_wood_defaults(),
paramtype2 = "facedir",
on_place = minetest.rotate_node
@ -104,7 +104,7 @@ minetest.register_node("ethereal:frost_wood", {
description = S("Frost Wood"),
tiles = {"ethereal_frost_wood.png"},
is_ground_content = false,
groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, put_out_fire = 1},
groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1},
sounds = default.node_sound_wood_defaults()
})
@ -121,7 +121,7 @@ minetest.register_node("ethereal:yellow_trunk", {
"ethereal_yellow_tree_top.png",
"ethereal_yellow_tree.png"
},
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, put_out_fire = 1},
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, puts_out_fire = 1},
sounds = default.node_sound_wood_defaults(),
paramtype2 = "facedir",
on_place = minetest.rotate_node
@ -132,7 +132,7 @@ minetest.register_node("ethereal:yellow_wood", {
description = S("Healing Tree Wood"),
tiles = {"ethereal_yellow_wood.png"},
is_ground_content = false,
groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, put_out_fire = 1},
groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1},
sounds = default.node_sound_wood_defaults()
})