diff --git a/mods/mcl_core/crafting.lua b/mods/mcl_core/crafting.lua index eabf5a50f..289c9d204 100644 --- a/mods/mcl_core/crafting.lua +++ b/mods/mcl_core/crafting.lua @@ -160,7 +160,7 @@ minetest.register_craft({ minetest.register_craft({ output = "mcl_dye:white 9", recipe = { - { "mcl_dye:bone_block" }, + { "mcl_core:bone_block" }, }, }) diff --git a/mods/mcl_core/nodes.lua b/mods/mcl_core/nodes.lua index 4faa71323..64bbee560 100644 --- a/mods/mcl_core/nodes.lua +++ b/mods/mcl_core/nodes.lua @@ -433,18 +433,15 @@ minetest.register_node("mcl_core:haybale", { sounds = mcl_core.node_sound_leaves_defaults(), }) ---[[ minetest.register_node("mcl_core:bone_block", { description = "Bone Block", - -- FIXME: Missing texutres - tiles = {"default_bone_block_top.png", "default_bone_block_top.png", "default_bone_block_side.png"}, + tiles = {"mcl_core_bone_block_top.png", "mcl_core_bone_block_top.png", "mcl_core_bone_block_side.png"}, is_ground_content = false, paramtype2 = "facedir", on_place = minetest.rotate_node, - groups = {cracky=3, building_block=1}, + groups = {cracky=2, building_block=1}, sounds = mcl_core.node_sound_stone_defaults(), }) -]] minetest.register_node("mcl_core:sea_lantern", { description = "Sea Lantern", diff --git a/mods/mcl_core/textures/mcl_core_bone_block_side.png b/mods/mcl_core/textures/mcl_core_bone_block_side.png new file mode 100644 index 000000000..2c4077f28 Binary files /dev/null and b/mods/mcl_core/textures/mcl_core_bone_block_side.png differ diff --git a/mods/mcl_core/textures/mcl_core_bone_block_top.png b/mods/mcl_core/textures/mcl_core_bone_block_top.png new file mode 100644 index 000000000..10729af91 Binary files /dev/null and b/mods/mcl_core/textures/mcl_core_bone_block_top.png differ diff --git a/mods/mcl_end/init.lua b/mods/mcl_end/init.lua index 3baa51f56..3c2a7523f 100644 --- a/mods/mcl_end/init.lua +++ b/mods/mcl_end/init.lua @@ -108,12 +108,11 @@ minetest.register_node("mcl_end:dragon_egg", { }) -- Craftitems --- TODO: Add textures for chorus fruit and popped chorus fruit ---[[ minetest.register_craftitem("mcl_end:chorus_fruit", { description = "Chorus Fruit", wield_image = "mcl_end_chorus_fruit.png", inventory_image = "mcl_end_chorus_fruit.png", + -- TODO: Teleport player on_use = minetest.item_eat(4), groups = { food = 2, eatable = 4 }, stack_max = 64, @@ -126,7 +125,6 @@ minetest.register_craftitem("mcl_end:chorus_fruit_popped", { groups = { craftitem = 1 }, stack_max = 64, }) -]] minetest.register_craftitem("mcl_end:ender_eye", { description = "Eye of Ender", diff --git a/mods/mcl_end/textures/mcl_end_chorus_fruit.png b/mods/mcl_end/textures/mcl_end_chorus_fruit.png new file mode 100644 index 000000000..a75856beb Binary files /dev/null and b/mods/mcl_end/textures/mcl_end_chorus_fruit.png differ diff --git a/mods/mcl_end/textures/mcl_end_chorus_fruit_popped.png b/mods/mcl_end/textures/mcl_end_chorus_fruit_popped.png new file mode 100644 index 000000000..07af7f90a Binary files /dev/null and b/mods/mcl_end/textures/mcl_end_chorus_fruit_popped.png differ diff --git a/mods/mcl_end/textures/mcl_end_purpur_block.png b/mods/mcl_end/textures/mcl_end_purpur_block.png index 2cece5add..f6f68b569 100644 Binary files a/mods/mcl_end/textures/mcl_end_purpur_block.png and b/mods/mcl_end/textures/mcl_end_purpur_block.png differ diff --git a/mods/mcl_end/textures/mcl_end_purpur_pillar.png b/mods/mcl_end/textures/mcl_end_purpur_pillar.png index 4af6fbe6e..6ccbb542f 100644 Binary files a/mods/mcl_end/textures/mcl_end_purpur_pillar.png and b/mods/mcl_end/textures/mcl_end_purpur_pillar.png differ diff --git a/mods/mcl_end/textures/mcl_end_purpur_pillar_top.png b/mods/mcl_end/textures/mcl_end_purpur_pillar_top.png index c76d4ce2c..494013a0d 100644 Binary files a/mods/mcl_end/textures/mcl_end_purpur_pillar_top.png and b/mods/mcl_end/textures/mcl_end_purpur_pillar_top.png differ