don't register teleport potion recipe when ethereal mod is present

This commit is contained in:
Milan 2017-10-17 20:26:23 +02:00
parent 1f6d6d23a7
commit ad53ea1445

View File

@ -243,14 +243,16 @@ minetest.register_craft({
},
})
minetest.register_craft({
output = 'teleport_potion:potion',
recipe = {
{"mobs_slimes:lava_slime", "farming:rhubarb", "mobs_slimes:green_slimeball"},
{"", "mobs_sandworm:spice", ""},
{"", "default:mese_crystal", ""},
},
})
if not minetest.get_modpath("ethereal") then
minetest.register_craft({
output = 'teleport_potion:potion',
recipe = {
{"mobs_slimes:lava_slime", "farming:rhubarb", "mobs_slimes:green_slimeball"},
{"", "mobs_sandworm:spice", ""},
{"", "default:mese_crystal", ""},
},
})
end
minetest.register_craft({
output = 'craft_guide:lcd_pc',