mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 14:23:16 -04:00
Added a recipe to return mese crystal fragments to their mese crystal form
The problem with Minetest 0.4.5's mese crystal fragments is they have zero function whatsoever. They cannot be placed as nodes and they cannot be crafted into anything else. One mese crystal can be crafted into nine mese crystal fragments, but there is no way to craft them back from this useless fragment form. This comit fixes that, allowing them to at least be put back into a usable form.
This commit is contained in:
parent
90aaa1fb62
commit
aa9705a2d7
1 changed files with 21 additions and 0 deletions
|
@ -509,6 +509,27 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:mese_crystal',
|
||||
recipe = {
|
||||
{
|
||||
'default:mese_crystal_fragment',
|
||||
'default:mese_crystal_fragment',
|
||||
'default:mese_crystal_fragment',
|
||||
},
|
||||
{
|
||||
'default:mese_crystal_fragment',
|
||||
'default:mese_crystal_fragment',
|
||||
'default:mese_crystal_fragment',
|
||||
},
|
||||
{
|
||||
'default:mese_crystal_fragment',
|
||||
'default:mese_crystal_fragment',
|
||||
'default:mese_crystal_fragment',
|
||||
},
|
||||
}
|
||||
})
|
||||
|
||||
--
|
||||
-- Crafting (tool repair)
|
||||
--
|
||||
|
|
Loading…
Add table
Reference in a new issue