Update Fork #4

Merged
chmodsayshello merged 9 commits from VoxeLibre/VoxeLibre:master into master 2022-04-30 10:55:16 +02:00
1 changed files with 8 additions and 2 deletions
Showing only changes of commit 057051aa6d - Show all commits

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)