Skip to content
Snippets Groups Projects
Commit 3eb482a8 authored by TenPlus1's avatar TenPlus1
Browse files

ethereal uses bonemeal mod if found instead of it's own

parent 6fa21694
No related branches found
No related tags found
No related merge requests found
--[[
Minetest Ethereal Mod (12th January 2017)
Minetest Ethereal Mod (16th January 2017)
Created by ChinChow
......@@ -74,11 +74,18 @@ dofile(path .. "/fences.lua")
dofile(path .. "/gates.lua")
dofile(path .. "/mapgen.lua")
dofile(path .. "/food.lua")
dofile(path .. "/bonemeal.lua")
dofile(path .. "/compatibility.lua")
dofile(path .. "/stairs.lua")
dofile(path .. "/lucky_block.lua")
-- Use bonemeal mod instead of ethereal's own if found
if minetest.get_modpath("bonemeal") then
minetest.register_alias("ethereal:bone", "bonemeal:bone")
minetest.register_alias("ethereal:bonemeal", "bonemeal:bonemeal")
else
dofile(path .. "/bonemeal.lua")
end
if minetest.get_modpath("xanadu") then
dofile(path .. "/plantpack.lua")
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment