Skip to content
Snippets Groups Projects
Commit 56c6f0ae authored by TenPlus1's avatar TenPlus1
Browse files

Disabling ethereal biomes no longer shows error messages

parent 7ee716e3
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ Ethereal v7 Mapgen mod for Minetest
- Fixed farming compatibility when using hoe on ethereal dirt
- Dirt with dry grass turns into green grass when near water
- Ice or snow above sea level melts into river water
- Disabling ethereal biomes no longer shows error messages
### 1.18
......
--[[
Minetest Ethereal Mod 1.19 (27th November 2015)
Minetest Ethereal Mod 1.19 (3rd December 2015)
Created by ChinChow
......@@ -38,29 +38,29 @@ ethereal.sandclay = 1 -- Sand areas with clay underneath
local path = minetest.get_modpath("ethereal")
dofile(path.."/plantlife.lua")
dofile(path.."/mushroom.lua")
dofile(path.."/onion.lua")
dofile(path.."/crystal.lua")
dofile(path.."/papyrus.lua")
dofile(path.."/flowers.lua")
dofile(path.."/water.lua")
dofile(path.."/dirt.lua")
dofile(path.."/leaves.lua")
dofile(path.."/wood.lua")
dofile(path.."/sapling.lua")
dofile(path.."/strawberry.lua")
dofile(path.."/fishing.lua")
dofile(path.."/extra.lua")
dofile(path.."/sealife.lua")
dofile(path.."/fences.lua")
dofile(path.."/gates.lua")
dofile(path.."/mapgen_v7n.lua") -- 0.4.13+
dofile(path .. "/plantlife.lua")
dofile(path .. "/mushroom.lua")
dofile(path .. "/onion.lua")
dofile(path .. "/crystal.lua")
dofile(path .. "/papyrus.lua")
dofile(path .. "/flowers.lua")
dofile(path .. "/water.lua")
dofile(path .. "/dirt.lua")
dofile(path .. "/leaves.lua")
dofile(path .. "/wood.lua")
dofile(path .. "/sapling.lua")
dofile(path .. "/strawberry.lua")
dofile(path .. "/fishing.lua")
dofile(path .. "/extra.lua")
dofile(path .. "/sealife.lua")
dofile(path .. "/fences.lua")
dofile(path .. "/gates.lua")
dofile(path .. "/mapgen_v7n.lua") -- 0.4.13+
if minetest.get_modpath("xanadu") then
dofile(path.."/plantpack.lua")
dofile(path .. "/plantpack.lua")
else
dofile(path.."/stairs.lua")
dofile(path .. "/stairs.lua")
end
print ("[MOD] Ethereal mod loaded")
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
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