diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-05-07 09:29:47 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-05-07 09:29:47 +0100 |
commit | 30bcca0a895f18825d5b07f89b7f9ce21aa91c4d (patch) | |
tree | e13cf7023477d612c65f0c25a47831a971b253a9 /init.lua | |
parent | b16ab7a7d05a826cc63690de12f700270f0ec140 (diff) |
removed bonemeal (use actual bonemeal mod)
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -99,12 +99,13 @@ dofile(path .. "/compatibility.lua") dofile(path .. "/stairs.lua")
dofile(path .. "/lucky_block.lua")
--- Use bonemeal mod instead of ethereal's own if found
+-- Set bonemeal aliases
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")
+else -- or return to where it came from
+ minetest.register_alias("ethereal:bone", "default:dirt")
+ minetest.register_alias("ethereal:bonemeal", "default:dirt")
end
if minetest.get_modpath("xanadu") then
|