Fixed the lodestone crafting to use the netherite ingot.

This commit is contained in:
PrairieAstronomer 2022-06-26 15:26:44 -06:00 committed by cora
parent 352a52e086
commit d86be83b2b
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ minetest.register_craft({
output = "mcl_compass:lodestone",
recipe = {
{"mcl_core:stonebrickcarved","mcl_core:stonebrickcarved","mcl_core:stonebrickcarved"},
{"mcl_core:stonebrickcarved", "mcl_core:diamondblock", "mcl_core:stonebrickcarved"},
{"mcl_core:stonebrickcarved", "mcl_nether:netherite_ingot", "mcl_core:stonebrickcarved"},
{"mcl_core:stonebrickcarved", "mcl_core:stonebrickcarved", "mcl_core:stonebrickcarved"}
}
})