Add stripped warped stuff

This commit is contained in:
3raven 2022-04-19 22:55:48 +00:00
parent 0200e25781
commit 9010305df4
1 changed files with 6 additions and 6 deletions

View File

@ -240,10 +240,10 @@ minetest.register_craft({
}) })
minetest.register_node("mcl_mushroom:stripped_warped_hyphae", { minetest.register_node("mcl_mushroom:stripped_warped_hyphae", {
description = description_stripped_trunk, description = S("Stripped Warped Hyphae"),
_doc_items_longdesc = longdesc, _doc_items_longdesc = S("The stripped stem of a warped hyphae"),
_doc_items_hidden = false, _doc_items_hidden = false,
tiles = {tile_stripped_inner, tile_stripped_inner, tile_stripped_bark}, tiles = {"stripped_warped_stem_top.png", "stripped_warped_stem_top.png", "stripped_warped_stem_side.png"},
paramtype2 = "facedir", paramtype2 = "facedir",
on_place = mcl_util.rotate_axis, on_place = mcl_util.rotate_axis,
stack_max = 64, stack_max = 64,
@ -255,9 +255,9 @@ minetest.register_node("mcl_mushroom:stripped_warped_hyphae", {
}) })
minetest.register_node("mcl_mushroom:stripped_warped_hyphae_bark", { minetest.register_node("mcl_mushroom:stripped_warped_hyphae_bark", {
description = description_stripped_bark, description = S("Stripped Warped Hyphae Bark"),
_doc_items_longdesc = longdesc_wood, _doc_items_longdesc = S("The stripped wood of a warped hyphae"),
tiles = {tile_stripped_bark}, tiles = {"stripped_warped_stem_side.png"},
paramtype2 = "facedir", paramtype2 = "facedir",
on_place = mcl_util.rotate_axis, on_place = mcl_util.rotate_axis,
stack_max = 64, stack_max = 64,