diff --git a/mods/MISC/mcl_temp_helper_recipes/depends.txt b/mods/MISC/mcl_temp_helper_recipes/depends.txt index 7e0cdd5dd..a1ce09984 100644 --- a/mods/MISC/mcl_temp_helper_recipes/depends.txt +++ b/mods/MISC/mcl_temp_helper_recipes/depends.txt @@ -1,4 +1,6 @@ mcl_core mcl_mobitems -mcl_dye mcl_end +mcl_nether +mcl_ocean +xpanes diff --git a/mods/MISC/mcl_temp_helper_recipes/init.lua b/mods/MISC/mcl_temp_helper_recipes/init.lua index 87388b24d..0209f1761 100644 --- a/mods/MISC/mcl_temp_helper_recipes/init.lua +++ b/mods/MISC/mcl_temp_helper_recipes/init.lua @@ -18,12 +18,12 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "mcl_core:redsand 8", - recipe = { - { "mcl_core:sand", "mcl_core:sand", "mcl_core:sand" }, - { "mcl_core:sand", "mcl_dye:red", "mcl_core:sand" }, - { "mcl_core:sand", "mcl_core:sand", "mcl_core:sand" }, - } + output = "mcl_end:end_stone", + recipe = { + { "mcl_core:sandstone", "mcl_core:stone", "mcl_core:sandstone" }, + { "mcl_core:stone", "mcl_core:sandstone", "mcl_core:stone" }, + { "mcl_core:sandstone", "mcl_core:stone", "mcl_core:sandstone" }, + }, }) minetest.register_craft({ @@ -48,23 +48,6 @@ minetest.register_craft({ }, }) -minetest.register_craft({ - output = "mcl_end:end_stone", - recipe = { - { "mcl_core:sandstone", "mcl_core:stone", "mcl_core:sandstone" }, - { "mcl_core:stone", "mcl_core:sandstone", "mcl_core:stone" }, - { "mcl_core:sandstone", "mcl_core:stone", "mcl_core:sandstone" }, - }, -}) - -minetest.register_craft({ - output = "mcl_mobitems:blaze_rod", - recipe = { - { "mcl_fire:flint_and_steel", "mcl_fire:flint_and_steel", "mcl_fire:flint_and_steel"}, - { "mcl_fire:flint_and_steel", "mcl_core:stick", "mcl_fire:flint_and_steel" }, - { "mcl_fire:flint_and_steel", "mcl_fire:flint_and_steel", "mcl_fire:flint_and_steel"}, - } -}) minetest.register_craft({ output = "mcl_mobitems:shulker_shell", recipe = { @@ -74,15 +57,6 @@ minetest.register_craft({ } }) -minetest.register_craft({ - output = "mcl_nether:quartz", - recipe = { - {"group:sand", "group:sand", "group:sand"}, - {"group:sand", "group:sand", "group:sand"}, - {"group:sand", "group:sand", "group:sand"}, - } -}) - minetest.register_craft({ output = "mcl_nether:nether_wart_item", recipe = { @@ -92,30 +66,6 @@ minetest.register_craft({ } }) -minetest.register_craft({ - type = "shapeless", - output = "mcl_nether:netherrack", - recipe = {"mcl_core:stone", "group:redsandstone"}, -}) - -minetest.register_craft({ - output = "mcl_nether:glowstone_dust", - recipe = { - {"mcl_torches:torch", "mcl_torches:torch", "mcl_torches:torch",}, - {"mcl_torches:torch", "mcl_core:coalblock", "mcl_torches:torch",}, - {"mcl_torches:torch", "mcl_torches:torch", "mcl_torches:torch",}, - }, -}) - -minetest.register_craft({ - output = "mcl_nether:soul_sand", - recipe = { - {"mcl_core:redsand","mcl_nether:netherrack","mcl_core:redsand"}, - {"mcl_nether:netherrack","mcl_core:redsand","mcl_nether:netherrack"}, - {"mcl_core:redsand","mcl_nether:netherrack","mcl_core:redsand"}, - }, -}) - minetest.register_craft({ output = "3d_armor:helmet_chain", recipe = { diff --git a/mods/MISC/mcl_wip/init.lua b/mods/MISC/mcl_wip/init.lua index bb29c9a65..8ed0d9579 100644 --- a/mods/MISC/mcl_wip/init.lua +++ b/mods/MISC/mcl_wip/init.lua @@ -4,7 +4,6 @@ local wip_items = { "mcl_anvils:anvil_damage_2", "mcl_core:darksapling", "mcl_core:apple_gold", - "mcl_end:ender_eye", "mcl_end:chorus_fruit", "mcl_end:chorus_flower", "mcl_end:chorus_flower_dead", @@ -15,7 +14,6 @@ local wip_items = { "gemalde:node_1", "mcl_observers:observer", "mcl_chests:trapped_chest", - "mobs_mc:llama", "mobs_mc:totem", "mcl_paintings:painting", }