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

Reviewed-on: MineClone2/MineClone2#2145
This commit is contained in:
cora 2022-04-27 22:04:23 +00:00
commit a4e8c0b884
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)