diff --git a/mods/blocks/biota/wood_hypha.lua b/mods/blocks/biota/wood_hypha.lua index 5af7c643a..45c4936cb 100644 --- a/mods/blocks/biota/wood_hypha.lua +++ b/mods/blocks/biota/wood_hypha.lua @@ -12,6 +12,45 @@ local common_defs = { } } +local hypha_blocks = { + ["crimson_hyphae"] = { + _mcl_stripped_variant = true, + groups = {crimson_stems = 1}, + tiles = {"biota_crimson_stem.png"} + }, + ["crimson_stem"] = { + _mcl_stripped_variant = true, + groups = {crimson_stems = 1}, + tiles = {type = "loglike"} + }, + ["stripped_crimson_hyphae"] = { + groups = {crimson_stems = 1}, + tiles = {"biota_stripped_crimson_stem.png"} + }, + ["stripped_crimson_stem"] = { + groups = {crimson_stems = 1}, + tiles = {type = "loglike"} + }, + ["stripped_warped_hyphae"] = { + groups = {warped_stems = 1}, + tiles = {"biota_stripped_warped_stem.png"} + }, + ["stripped_warped_stem"] = { + groups = {warped_stems = 1}, + tiles = {type = "loglike"} + }, + ["warped_hyphae"] = { + _mcl_stripped_variant = true, + groups = {warped_stems = 1}, + tiles = {"biota_warped_stem.png"} + }, + ["warped_stem"] = { + _mcl_stripped_variant = true, + groups = {warped_stems = 1}, + tiles = {type = "loglike"} + } +} + local wood_blocks = { ["acacia_log"] = { _mcl_stripped_variant = true,