Removed mese crystal fragments in preperation for Minetest 0.4.5.
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 commit removes the ability to obtain mese crystal fragments, as well as provides a way to craft nine existing mese crystal fragments back into one mese crystal.
This commit is contained in:
parent
4626d88237
commit
99660e98c2
1
0gb.us_game/mods/added/mesefix_0gb_us/depends.txt
Normal file
1
0gb.us_game/mods/added/mesefix_0gb_us/depends.txt
Normal file
@ -0,0 +1 @@
|
||||
default
|
28
0gb.us_game/mods/added/mesefix_0gb_us/init.lua
Normal file
28
0gb.us_game/mods/added/mesefix_0gb_us/init.lua
Normal file
@ -0,0 +1,28 @@
|
||||
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',
|
||||
},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:mese_crystal',
|
||||
recipe = {{'default:mese_crystal'}},
|
||||
})
|
||||
|
||||
minetest.debug("[mesefix_0gb_us]: Plugin loaded from\n"..minetest.get_modpath("mesefix_0gb_us"))
|
||||
|
Loading…
x
Reference in New Issue
Block a user