don't register teleport potion recipe when ethereal mod is present
This commit is contained in:
parent
1f6d6d23a7
commit
ad53ea1445
18
crafting.lua
18
crafting.lua
@ -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',
|
||||
|
Loading…
x
Reference in New Issue
Block a user