forked from VoxeLibre/VoxeLibre
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:
commit
a4e8c0b884
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue