forked from VoxeLibre/VoxeLibre
Add packed ice crafting recipe
This commit is contained in:
parent
83aebb8b99
commit
057051aa6d
|
@ -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