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

Reviewed-on: https://git.minetest.land/Mineclonia/Mineclonia/pulls/180
Reviewed-by: Li0n_2 <li0n_2@noreply.git.minetest.land>
master
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
-- Add it when silk touch tools work.
minetest.register_craft({
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)