Merge pull request 'Add packed ice crafting recipe' (#180) from add-packed-ice-crafting-recipe into master

Reviewed-on: Mineclonia/Mineclonia#180
Reviewed-by: Li0n_2 <li0n_2@noreply.git.minetest.land>
This commit is contained in:
Li0n_2 2021-11-27 23:43:28 +00:00
commit c08f9850f6
1 changed files with 8 additions and 2 deletions

View File

@ -382,8 +382,14 @@ minetest.register_craft({
} }
}) })
-- TODO: Add crafting recipe: 9 ice → 1 packed ice minetest.register_craft({
-- Add it when silk touch tools work. output = 'mcl_core:packed_ice 1',
recipe = {
{'mcl_core:ice', 'mcl_core:ice', 'mcl_core:ice'},
{'mcl_core:ice', 'mcl_core:ice', 'mcl_core:ice'},
{'mcl_core:ice', 'mcl_core:ice', 'mcl_core:ice'},
}
})
-- --
-- Crafting (tool repair) -- Crafting (tool repair)